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