Index: uspace/app/bdsh/cmds/modules/touch/touch.c
===================================================================
--- uspace/app/bdsh/cmds/modules/touch/touch.c	(revision 393302009dc835da26285d65656e166c29b4540f)
+++ uspace/app/bdsh/cmds/modules/touch/touch.c	(revision 8565a42398543d14e36b2df6f7a70c6237b458f8)
@@ -69,5 +69,5 @@
 		    cmdname);
 	}
-	
+
 	return;
 }
@@ -85,7 +85,7 @@
 	int fd = -1;
 	char *buff = NULL;
-	
+
 	DIR *dirp;
-	
+
 	for (c = 0, optreset = 1, optind = 0, longind = 0; c != -1; ) {
 		c = getopt_long(argc, argv, "c", long_options, &longind);
@@ -96,5 +96,5 @@
 		}
 	}
-	
+
 	if (argc - optind < 1) {
 		printf("%s: Incorrect number of arguments. Try `help %s extended'\n",
@@ -102,5 +102,5 @@
 		return CMD_FAILURE;
 	}
-	
+
 	for (i = optind; argv[i] != NULL; i++) {
 		buff = str_dup(argv[i]);
@@ -110,5 +110,5 @@
 			continue;
 		}
-		
+
 		dirp = opendir(buff);
 		if (dirp) {
@@ -119,5 +119,5 @@
 			continue;
 		}
-		
+
 		/* Check whether file exists if -c (--no-create) option is given */
 		if ((!no_create) ||
@@ -128,5 +128,5 @@
 			}
 		}
-		
+
 		if (fd < 0) {
 			cli_error(CL_EFAIL, "Could not update or create `%s'", buff);
@@ -138,8 +138,8 @@
 			fd = -1;
 		}
-		
+
 		free(buff);
 	}
-	
+
 	if (ret)
 		return CMD_FAILURE;
