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