Index: uspace/srv/fs/tmpfs/tmpfs.c
===================================================================
--- uspace/srv/fs/tmpfs/tmpfs.c	(revision 1a9174e79190398c1f016ea605a18f97e673cafb)
+++ uspace/srv/fs/tmpfs/tmpfs.c	(revision 76f566de890cd5cbde52f45bfddc66bd4993b126)
@@ -53,6 +53,5 @@
 #include "../../vfs/vfs.h"
 
-#define NAME "tmpfs"
-
+#define NAME  "tmpfs"
 
 vfs_info_t tmpfs_vfs_info = {
@@ -65,5 +64,5 @@
 int main(int argc, char **argv)
 {
-	printf(NAME ": HelenOS TMPFS file system server\n");
+	printf("%s: HelenOS TMPFS file system server\n", NAME);
 
 	if (argc == 3) {
@@ -71,5 +70,5 @@
 			tmpfs_vfs_info.instance = strtol(argv[2], NULL, 10);
 		else {
-			printf(NAME " Unrecognized parameters");
+			printf("%s: Unrecognized parameters", NAME);
 			return -1;
 		}
@@ -77,5 +76,5 @@
 
 	if (!tmpfs_init()) {
-		printf(NAME ": failed to initialize TMPFS\n");
+		printf("%s: Failed to initialize TMPFS\n", NAME);
 		return -1;
 	}
@@ -84,5 +83,5 @@
 	    INTERFACE_VFS_DRIVER, 0);
 	if (!vfs_sess) {
-		printf(NAME ": Unable to connect to VFS\n");
+		printf("%s: Unable to connect to VFS\n", NAME);
 		return -1;
 	}
@@ -91,9 +90,10 @@
 	    &tmpfs_libfs_ops);
 	if (rc != EOK) {
-		printf(NAME ": Failed to register file system: %s\n", str_error(rc));
+		printf("%s: Failed to register file system: %s\n", NAME,
+		    str_error(rc));
 		return rc;
 	}
 
-	printf(NAME ": Accepting connections\n");
+	printf("%s: Accepting connections\n", NAME);
 	task_retval(0);
 	async_manager();
