Index: uspace/app/bdsh/cmds/modules/mount/mount.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mount/mount.c	(revision bc41f3a30573f904e3f810d583bba0b92e579543)
+++ uspace/app/bdsh/cmds/modules/mount/mount.c	(revision e6576355a3cebfb1925a5a55ba5aa821db40fac2)
@@ -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;
 	}
