Index: uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision 8ebe212533840cb545a4f768a0689f6940125144)
+++ uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision 30e9f42a78ab720d6d4fc7f8484c61c6b7964bdd)
@@ -51,11 +51,11 @@
 
 static struct option const long_options[] = {
-	{"parents", no_argument, 0, 'p'},
-	{"verbose", no_argument, 0, 'v'},
-	{"mode", required_argument, 0, 'm'},
-	{"help", no_argument, 0, 'h'},
-	{"version", no_argument, 0, 'V'},
-	{"follow", no_argument, 0, 'f'},
-	{0, 0, 0, 0}
+	{ "parents", no_argument, 0, 'p' },
+	{ "verbose", no_argument, 0, 'v' },
+	{ "mode", required_argument, 0, 'm' },
+	{ "help", no_argument, 0, 'h' },
+	{ "version", no_argument, 0, 'V' },
+	{ "follow", no_argument, 0, 'f' },
+	{ 0, 0, 0, 0 }
 };
 
@@ -68,14 +68,14 @@
 		help_cmd_mkdir(HELP_SHORT);
 		printf(
-		"Usage:  %s [options] <path>\n"
-		"Options:\n"
-		"  -h, --help       A short option summary\n"
-		"  -V, --version    Print version information and exit\n"
-		"  -p, --parents    Create needed parents for <path>\n"
-		"  -m, --mode       Set permissions to [mode] (UNUSED)\n"
-		"  -v, --verbose    Be extremely noisy about what is happening\n"
-		"  -f, --follow     Go to the new directory once created\n"
-		"Currently, %s is under development, some options don't work.\n",
-		cmdname, cmdname);
+		    "Usage:  %s [options] <path>\n"
+		    "Options:\n"
+		    "  -h, --help       A short option summary\n"
+		    "  -V, --version    Print version information and exit\n"
+		    "  -p, --parents    Create needed parents for <path>\n"
+		    "  -m, --mode       Set permissions to [mode] (UNUSED)\n"
+		    "  -v, --verbose    Be extremely noisy about what is happening\n"
+		    "  -f, --follow     Go to the new directory once created\n"
+		    "Currently, %s is under development, some options don't work.\n",
+		    cmdname, cmdname);
 	}
 
@@ -202,5 +202,5 @@
 	if (argc < 1) {
 		printf("%s - incorrect number of arguments. Try `%s --help'\n",
-			cmdname, cmdname);
+		    cmdname, cmdname);
 		return CMD_FAILURE;
 	}
@@ -209,6 +209,6 @@
 		if (verbose)
 			printf("%s: creating %s%s\n",
-				cmdname, argv[i],
-				create_parents ? " (and all parents)" : "");
+			    cmdname, argv[i],
+			    create_parents ? " (and all parents)" : "");
 		ret += create_directory(argv[i], create_parents);
 	}
Index: uspace/app/date/date.c
===================================================================
--- uspace/app/date/date.c	(revision 8ebe212533840cb545a4f768a0689f6940125144)
+++ uspace/app/date/date.c	(revision 30e9f42a78ab720d6d4fc7f8484c61c6b7964bdd)
@@ -47,5 +47,5 @@
 static void usage(void);
 
-static int days_month[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
+static int days_month[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
 
 int
Index: uspace/app/mkexfat/mkexfat.c
===================================================================
--- uspace/app/mkexfat/mkexfat.c	(revision 8ebe212533840cb545a4f768a0689f6940125144)
+++ uspace/app/mkexfat/mkexfat.c	(revision 30e9f42a78ab720d6d4fc7f8484c61c6b7964bdd)
@@ -123,8 +123,8 @@
 
 static struct option const long_options[] = {
-	{"help", no_argument, 0, 'h'},
-	{"cluster-size", required_argument, 0, 'c'},
-	{"fs-size", required_argument, 0, 's'},
-	{"label", required_argument, 0, 'L' },
+	{ "help", no_argument, 0, 'h' },
+	{ "cluster-size", required_argument, 0, 'c' },
+	{ "fs-size", required_argument, 0, 's' },
+	{ "label", required_argument, 0, 'L' },
 };
 
Index: uspace/app/tester/float/float2.c
===================================================================
--- uspace/app/tester/float/float2.c	(revision 8ebe212533840cb545a4f768a0689f6940125144)
+++ uspace/app/tester/float/float2.c	(revision 30e9f42a78ab720d6d4fc7f8484c61c6b7964bdd)
@@ -209,5 +209,5 @@
 {
 	bool fail = false;
-if (0) {
+#if 0
 	for (unsigned int i = 0; i < OPERANDS; i++) {
 		double res = acos(arguments_acos[i]);
@@ -249,5 +249,5 @@
 		}
 	}
-}
+#endif
 	for (unsigned int i = 0; i < OPERANDS; i++) {
 		double res = atan(arguments_atan[i]);
