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