Changes in uspace/app/bdsh/cmds/modules/ls/ls.c [b7fd2a0:f2460a50] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.c
rb7fd2a0 rf2460a50 32 32 33 33 #include <errno.h> 34 #include <str_error.h>35 34 #include <stdio.h> 36 35 #include <stdlib.h> … … 135 134 int i; 136 135 int nbdirs = 0; 137 errno_t rc;136 int rc; 138 137 int len; 139 138 char *buff; … … 185 184 if (rc != EOK) { 186 185 printf("ls: skipping bogus node %s\n", buff); 187 printf("error=% s\n", str_error_name(rc));186 printf("error=%d\n", rc); 188 187 goto out; 189 188 }
Note:
See TracChangeset
for help on using the changeset viewer.