Index: uspace/app/mkexfat/mkexfat.c
===================================================================
--- uspace/app/mkexfat/mkexfat.c	(revision ebea7acff6e58e78f2d0e303e49f2d472106eaad)
+++ uspace/app/mkexfat/mkexfat.c	(revision 8efc4c1f20a1467521ebc2a5707702b311fb90dc)
@@ -222,15 +222,15 @@
 cfg_print_info(exfat_cfg_t *cfg)
 {
-	printf(NAME ": Sector size:           %lu\n",
+	printf("Sector size:           %lu\n",
 	    (unsigned long) cfg->sector_size);
-	printf(NAME ": Cluster size:          %lu\n",
+	printf("Cluster size:          %lu\n",
 	    (unsigned long) cfg->cluster_size);
-	printf(NAME ": FAT size in sectors:   %lu\n", cfg->fat_sector_count);
-	printf(NAME ": Data start sector:     %lu\n", cfg->data_start_sector);
-	printf(NAME ": Total num of clusters: %lu\n", cfg->total_clusters);
-	printf(NAME ": Total used clusters:   %lu\n", cfg->allocated_clusters);
-	printf(NAME ": Bitmap size:           %lu\n", (unsigned long)
+	printf("FAT size in sectors:   %lu\n", cfg->fat_sector_count);
+	printf("Data start sector:     %lu\n", cfg->data_start_sector);
+	printf("Total num of clusters: %lu\n", cfg->total_clusters);
+	printf("Total used clusters:   %lu\n", cfg->allocated_clusters);
+	printf("Bitmap size:           %lu\n", (unsigned long)
 	    div_round_up(cfg->bitmap_size, cfg->cluster_size));
-	printf(NAME ": Upcase table size:     %lu\n", (unsigned long)
+	printf("Upcase table size:     %lu\n", (unsigned long)
 	    div_round_up(sizeof(upcase_table), cfg->cluster_size));
 }
@@ -792,5 +792,5 @@
 	dev_path = *argv;
 
-	printf(NAME ": Device = %s\n", dev_path);
+	printf("Device = %s\n", dev_path);
 
 	rc = loc_service_get_id(dev_path, &service_id, 0);
@@ -824,5 +824,5 @@
 		return 1;
 	} else {
-		printf(NAME ": Block device has %" PRIuOFF64 " blocks.\n",
+		printf("Block device has %" PRIuOFF64 " blocks.\n",
 		    cfg.volume_count);
 	}
@@ -847,5 +847,5 @@
 	}
 
-	printf(NAME ": Writing the allocation table.\n");
+	printf("Writing the allocation table.\n");
 
 	/* Initialize the FAT table */
@@ -889,5 +889,5 @@
 	}
 
-	printf(NAME ": Writing the allocation bitmap.\n");
+	printf("Writing the allocation bitmap.\n");
 
 	/* Write the allocation bitmap to disk */
@@ -899,5 +899,5 @@
 	}
 
-	printf(NAME ": Writing the upcase table.\n");
+	printf("Writing the upcase table.\n");
 
 	/* Write the upcase table to disk */
@@ -909,5 +909,5 @@
 	}
 
-	printf(NAME ": Writing the root directory.\n");
+	printf("Writing the root directory.\n");
 
 	rc = root_dentries_write(service_id, &cfg);
@@ -918,5 +918,5 @@
 	}
 
-	printf(NAME ": Writing the boot sectors.\n");
+	printf("Writing the boot sectors.\n");
 
 	rc = bootsec_write(service_id, &cfg);
