Index: uspace/app/testread/testread.c
===================================================================
--- uspace/app/testread/testread.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/app/testread/testread.c	(revision 9fa14d8ddc43d5a2acc6637cb66265ecd07540e8)
@@ -87,14 +87,17 @@
 
 	/* Skip program name */
-	--argc; ++argv;
+	--argc;
+	++argv;
 
 	if (argc > 0 && str_cmp(*argv, "--no-check") == 0) {
 		check_enabled = false;
-		--argc; ++argv;
+		--argc;
+		++argv;
 	}
 
 	if (argc > 0 && str_cmp(*argv, "--no-progress") == 0) {
 		progress = false;
-		--argc; ++argv;
+		--argc;
+		++argv;
 	}
 
@@ -156,8 +159,8 @@
 			if (last_run > 0 && total_time > 0) {
 				printf("%" PRIuOFF64 "M - time: %u s, "
-				    "cur: %"PRIuOFF64 " B/s, avg: %" PRIuOFF64 " B/s\n",
+				    "cur: %" PRIuOFF64 " B/s, avg: %" PRIuOFF64 " B/s\n",
 				    offset / MBYTE, last_run,
-				    (offset-last_mark)/last_run,
-				    offset/total_time);
+				    (offset - last_mark) / last_run,
+				    offset / total_time);
 				prev_time = cur_time;
 				last_mark = offset;
@@ -176,5 +179,5 @@
 		    offset,
 		    total_run_time,
-		    offset/total_run_time);
+		    offset / total_run_time);
 	}
 
