Index: uspace/app/bdsh/cmds/modules/mv/mv.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mv/mv.c	(revision 163fc0963aff02c35c25572b75d24681834e9f1c)
+++ uspace/app/bdsh/cmds/modules/mv/mv.c	(revision b2a1fd92811bab5d05b74e0c829a43f348315cbc)
@@ -30,4 +30,5 @@
 #include <stdlib.h>
 #include <errno.h>
+#include <str_error.h>
 #include <vfs/vfs.h>
 #include "config.h"
@@ -62,6 +63,6 @@
 	rc = vfs_rename_path(argv[1], argv[2]);
 	if (rc != EOK) {
-		printf("Unable to rename %s to %s (error=%d)\n",
-		    argv[1], argv[2], rc);
+		printf("Unable to rename %s to %s: %s)\n",
+		    argv[1], argv[2], str_error(rc));
 		return CMD_FAILURE;
 	}
