Index: uspace/app/mkmfs/mkmfs.c
===================================================================
--- uspace/app/mkmfs/mkmfs.c	(revision 84239b1cd7c5ed286263ce4edb649da00b34b249)
+++ uspace/app/mkmfs/mkmfs.c	(revision a57fa325b051d5e952ced94f3f203b231c8f259a)
@@ -98,11 +98,11 @@
 
 static struct option const long_options[] = {
-		{ "help", no_argument, 0, 'h' },
-		{ "long-names", no_argument, 0, 'l' },
-		{ "block-size", required_argument, 0, 'b' },
-		{ "inodes", required_argument, 0, 'i' },
-		{ NULL, no_argument, 0, '1' },
-		{ NULL, no_argument, 0, '2' },
-		{ 0, 0, 0, 0 }
+	{ "help", no_argument, 0, 'h' },
+	{ "long-names", no_argument, 0, 'l' },
+	{ "block-size", required_argument, 0, 'b' },
+	{ "inodes", required_argument, 0, 'i' },
+	{ NULL, no_argument, 0, '1' },
+	{ NULL, no_argument, 0, '2' },
+	{ 0, 0, 0, 0 }
 };
 
@@ -495,5 +495,5 @@
 
 		if (sb->fs_version == 3) {
-			if(INT32_MAX / sb->block_size < zones)
+			if (INT32_MAX / sb->block_size < zones)
 				sb->max_file_size = INT32_MAX;
 			sb->ino_per_block = V3_INODES_PER_BLOCK(sb->block_size);
@@ -730,5 +730,5 @@
 {
 	if (level == HELP_SHORT) {
-		printf(NAME": tool to create new Minix file systems\n");
+		printf(NAME ": tool to create new Minix file systems\n");
 	} else {
 		printf("Usage: [options] device\n"
@@ -737,7 +737,7 @@
 		    "-b ##      Specify the block size in bytes (V3 only),\n"
 		    "           valid block size values are 1024, 2048 and"
-				" 4096 bytes per block\n"
+		    /* ...   */ " 4096 bytes per block\n"
 		    "-i ##      Specify the number of inodes"
-				" for the filesystem\n"
+		    /* ...   */ " for the filesystem\n"
 		    "-l         Use 30-char long filenames (V1/V2 only)\n");
 	}
