Changeset dd8ab1c in mainline for uspace/app/bdsh/cmds/modules/cp/cp.c


Ignore:
Timestamp:
2017-12-10T21:08:11Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68e5406
Parents:
1afa94d
Message:

More str_error() additions.

File:
1 edited

Legend:

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

    r1afa94d rdd8ab1c  
    2828
    2929#include <errno.h>
     30#include <str_error.h>
    3031#include <stdio.h>
    3132#include <stdlib.h>
     
    432433
    433434        if (rc != EOK) {
    434                 printf("\nError copying %s, (%d)\n", src, rc);
     435                printf("\nError copying %s: %s\n", src, str_error(rc));
    435436                return rc;
    436437        }
Note: See TracChangeset for help on using the changeset viewer.