Index: uspace/app/bnchmark/bnchmark.c
===================================================================
--- uspace/app/bnchmark/bnchmark.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/app/bnchmark/bnchmark.c	(revision 105fcf0714aa35d68140847af774ff8916200a43)
@@ -55,10 +55,10 @@
 #define MBYTE (1024*1024)
 
-typedef errno_t(*measure_func_t)(void *);
+typedef errno_t (*measure_func_t)(void *);
 typedef unsigned long umseconds_t; /* milliseconds */
 
 static void syntax_print(void);
 
-static errno_t measure(measure_func_t fn, void* data, umseconds_t *result)
+static errno_t measure(measure_func_t fn, void *data, umseconds_t *result)
 {
 	struct timeval start_time;
@@ -155,5 +155,6 @@
 
 	// Skip program name
-	--argc; ++argv;
+	--argc;
+	++argv;
 
 	iterations = strtol(*argv, &endptr, 10);
@@ -164,20 +165,21 @@
 	}
 
-	--argc; ++argv;
+	--argc;
+	++argv;
 	test_type = *argv;
 
-	--argc; ++argv;
+	--argc;
+	++argv;
 	log_str = *argv;
 
-	--argc; ++argv;
+	--argc;
+	++argv;
 	path = *argv;
 
 	if (str_cmp(test_type, "sequential-file-read") == 0) {
 		fn = sequential_read_file;
-	}
-	else if (str_cmp(test_type, "sequential-dir-read") == 0) {
+	} else if (str_cmp(test_type, "sequential-dir-read") == 0) {
 		fn = sequential_read_dir;
-	}
-	else {
+	} else {
 		fprintf(stderr, "Error, unknown test type\n");
 		syntax_print();
