diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ int df_main(void) struct stat st; // Stat it (complain if we can't). - if(!stat(*next, &st)) { + if(stat(*next, &st)) { perror_msg("`%s'", next); toys.exitval = 1; continue; |