Index: uspace/app/bdsh/cmds/modules/mount/mount.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mount/mount.c	(revision 6b8e5b74427c3a66a192963cdac8b0ddbc45e451)
+++ uspace/app/bdsh/cmds/modules/mount/mount.c	(revision e9563c356932b782a1f6979ffab3a58b0bc12f9f)
@@ -33,4 +33,5 @@
 #include <errno.h>
 #include <getopt.h>
+#include <inttypes.h>
 #include "config.h"
 #include "util.h"
@@ -79,11 +80,13 @@
 		old_ent = mtab_ent;
 
-		printf("%s on %s ", mtab_ent->fs_name, mtab_ent->mp);
+		printf("%s", mtab_ent->fs_name);
+		if (mtab_ent->instance)
+			printf("/%d", mtab_ent->instance);
+		printf(" on %s ", mtab_ent->mp);
 
 		if (str_size(mtab_ent->opts) > 0)
 			printf("opts=%s ", mtab_ent->opts);
 
-		printf("(instance=%d, service_id=%" PRIu64 ")\n",
-		    mtab_ent->instance, mtab_ent->service_id);
+		printf("(service=%" PRIun ")\n", mtab_ent->service_id);
 	}
 
