Changeset dd8ab1c in mainline for uspace/app/bdsh/cmds/modules/ls/ls.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/ls/ls.c

    r1afa94d rdd8ab1c  
    3232
    3333#include <errno.h>
     34#include <str_error.h>
    3435#include <stdio.h>
    3536#include <stdlib.h>
     
    184185                if (rc != EOK) {
    185186                        printf("ls: skipping bogus node %s\n", buff);
    186                         printf("error=%d\n", rc);
     187                        printf("error=%s\n", str_error_name(rc));
    187188                        goto out;
    188189                }
Note: See TracChangeset for help on using the changeset viewer.