Ignore:
File:
1 edited

Legend:

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

    rf2460a50 rb7fd2a0  
    3232
    3333#include <errno.h>
     34#include <str_error.h>
    3435#include <stdio.h>
    3536#include <stdlib.h>
     
    134135        int i;
    135136        int nbdirs = 0;
    136         int rc;
     137        errno_t rc;
    137138        int len;
    138139        char *buff;
     
    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.