Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/mv/mv.c

    rdd8ab1c r163fc09  
    3030#include <stdlib.h>
    3131#include <errno.h>
    32 #include <str_error.h>
    3332#include <vfs/vfs.h>
    3433#include "config.h"
     
    6362        rc = vfs_rename_path(argv[1], argv[2]);
    6463        if (rc != EOK) {
    65                 printf("Unable to rename %s to %s: %s)\n",
    66                     argv[1], argv[2], str_error(rc));
     64                printf("Unable to rename %s to %s (error=%d)\n",
     65                    argv[1], argv[2], rc);
    6766                return CMD_FAILURE;
    6867        }
Note: See TracChangeset for help on using the changeset viewer.