This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gfs2-utils: master - gfs2_tool: Fix misplaced bracket that bob spotted


Gitweb:        http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=90a7e2c443fdaa3c6bec6ff588de3f994cb78663
Commit:        90a7e2c443fdaa3c6bec6ff588de3f994cb78663
Parent:        770f813b787ce5c3ae2cbf56cd16d6ad824e04da
Author:        Steven Whitehouse <steve@dolmen.chygwyn.com>
AuthorDate:    Tue Mar 24 19:10:32 2009 +0000
Committer:     Steven Whitehouse <steve@dolmen.chygwyn.com>
CommitterDate: Tue Mar 24 19:10:32 2009 +0000

gfs2_tool: Fix misplaced bracket that bob spotted

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
---
 gfs2/Makefile  |    2 +-
 gfs2/tool/sb.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gfs2/Makefile b/gfs2/Makefile
index 7daf231..058ad5f 100644
--- a/gfs2/Makefile
+++ b/gfs2/Makefile
@@ -1,4 +1,4 @@
 include ../make/defines.mk
 include $(OBJDIR)/make/passthrough.mk
 
-SUBDIRS=libgfs2 convert edit fsck mkfs mount quota tool man init.d
+SUBDIRS=libgfs2 convert edit fsck mkfs quota tool man init.d
diff --git a/gfs2/tool/sb.c b/gfs2/tool/sb.c
index 7757470..16cd8b4 100644
--- a/gfs2/tool/sb.c
+++ b/gfs2/tool/sb.c
@@ -191,7 +191,7 @@ do_sb(int argc, char **argv)
 				cp++;
 			}
 			memcpy(sb.sb_uuid, uuid, 16);
-			printf( _("new uuid = %s\n", str_uuid(sb.sb_uuid)));
+			printf( _("new uuid = %s\n"), str_uuid(sb.sb_uuid));
 		}
 #endif
 	} else if (strcmp(field, "all") == 0) {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]