]> Zhao Yanbai Git Server - minix.git/commitdiff
Reverted accidental change to stat.c.
authorPhilip Homburg <philip@cs.vu.nl>
Thu, 2 Oct 2008 14:11:12 +0000 (14:11 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Thu, 2 Oct 2008 14:11:12 +0000 (14:11 +0000)
commands/simple/stat.c

index 2a831150423afbfacc2e725c997dbd9dbe4bdf21..be4d70d7200227561d8a2adfe92acfbb9ed61e94 100755 (executable)
@@ -195,7 +195,6 @@ int main(int ac, char** av)
                        continue;
                }
 #endif
-fprintf(stderr, "stat: buffer at %p\n", &sbuf);
                if (!sym) err= stat(av[i], &sbuf);
                if (sym || (err != 0 && errno == ENOENT)) {
                    err= lstat(av[i], &sbuf);
@@ -245,7 +244,6 @@ fprintf(stderr, "stat: buffer at %p\n", &sbuf);
                printf("%s: %s\n", av[i], sbuf);
                continue;
        }
-fprintf(stderr, "stat: buffer at %p\n", &sbuf);
        if (!sym) err= stat(av[i], &sbuf);
        if (sym || (err != 0 && errno == ENOENT)) err= lstat(av[i], &sbuf);
        if (err != -1) {