Index: uspace/app/bdsh/cmds/modules/cmp/cmp.c
===================================================================
--- uspace/app/bdsh/cmds/modules/cmp/cmp.c	(revision 76d0981d8dda2b7d698201a93e0c555e99215ba5)
+++ uspace/app/bdsh/cmds/modules/cmp/cmp.c	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
@@ -59,10 +59,10 @@
 		help_cmd_cmp(HELP_SHORT);
 		printf(
-		"Usage:  %s [options] <file1> <file2>\n"
-		"Options:\n"
-		"  -h, --help       A short option summary\n"
-		"  -v, --version    Print version information and exit\n"
-		"No output is printed; the return code is 1 if the files differ.\n",
-		cmdname);
+		    "Usage:  %s [options] <file1> <file2>\n"
+		    "Options:\n"
+		    "  -h, --help       A short option summary\n"
+		    "  -v, --version    Print version information and exit\n"
+		    "No output is printed; the return code is 1 if the files differ.\n",
+		    cmdname);
 	}
 
@@ -73,9 +73,9 @@
 {
 	errno_t rc = EOK;
-	const char *fn[2] = {fn0, fn1};
-	int fd[2] = {-1, -1};
+	const char *fn[2] = { fn0, fn1 };
+	int fd[2] = { -1, -1 };
 	char buffer[2][CMP_BUFLEN];
 	size_t offset[2];
-	aoff64_t pos[2] = {};
+	aoff64_t pos[2] = { };
 
 	for (int i = 0; i < 2; i++) {
@@ -142,5 +142,5 @@
 	if (argc - optind != 2) {
 		printf("%s - incorrect number of arguments. Try `%s --help'\n",
-			cmdname, cmdname);
+		    cmdname, cmdname);
 		return CMD_FAILURE;
 	}
