Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4681 → Rev 4682

/trunk/uspace/app/bdsh/cmds/modules/ls/ls.c
89,7 → 89,8
struct stat s;
int rc;
 
if (rc = stat(pathname, &s)) {
rc = stat(pathname, &s);
if (rc != 0) {
/* Odd chance it was deleted from the time readdir() found it */
printf("ls: skipping bogus node %s\n", pathname);
printf("rc=%d\n", rc);