Index: uspace/app/bdsh/cmds/modules/mount/mount.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mount/mount.c	(revision 6afc9d780e775e54c1cfb5d3c57fb749979b18d2)
+++ uspace/app/bdsh/cmds/modules/mount/mount.c	(revision 1e5d01bb594a6e472579d21a7da4f3f782adddad)
@@ -30,4 +30,5 @@
 #include <stdio.h>
 #include <stdlib.h>
+#include <str_error.h>
 #include <vfs/vfs.h>
 #include <adt/list.h>
@@ -152,6 +153,6 @@
 	rc = vfs_mount(t_argv[1], t_argv[2], dev, mopts, 0, instance);
 	if (rc != EOK) {
-		printf("Unable to mount %s filesystem to %s on %s (rc=%d)\n",
-		    t_argv[1], t_argv[2], t_argv[3], rc);
+		printf("Unable to mount %s filesystem to %s on %s (rc=%s)\n",
+		    t_argv[1], t_argv[2], t_argv[3], str_error(rc));
 		return CMD_FAILURE;
 	}
