Index: uspace/app/blkdump/blkdump.c
===================================================================
--- uspace/app/blkdump/blkdump.c	(revision 1d6dd2a62370f8442aef510558ad86b6439e6653)
+++ uspace/app/blkdump/blkdump.c	(revision 8565a42398543d14e36b2df6f7a70c6237b458f8)
@@ -72,5 +72,5 @@
 	aoff64_t dev_nblocks;
 	bool toc = false;
-	
+
 	if (argc < 2) {
 		printf(NAME ": Error, argument missing.\n");
@@ -91,5 +91,5 @@
 		relative = true;
 	}
-	
+
 	if (str_cmp(*argv, "--offset") == 0) {
 		--argc; ++argv;
@@ -109,5 +109,5 @@
 		--argc; ++argv;
 	}
-	
+
 	if (str_cmp(*argv, "--count") == 0) {
 		--argc; ++argv;
@@ -241,9 +241,9 @@
 	size_t pos;
 	uint8_t b;
-	
+
 	if (length > bytes_per_row) {
 		length = bytes_per_row;
 	}
-	
+
 	/* Print hexadecimal values */
 	for (pos = 0; pos < length; pos++) {
@@ -253,5 +253,5 @@
 		printf("%02hhX ", data[pos]);
 	}
-	
+
 	/* Pad with spaces if we have less than 16 bytes */
 	for (pos = length; pos < bytes_per_row; pos++) {
@@ -261,5 +261,5 @@
 		printf("   ");
 	}
-	
+
 	/* Print printable characters */
 	for (pos = 0; pos < length; pos++) {
