diff options
author | Rob Landley <rob@landley.net> | 2006-11-19 20:35:05 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-11-19 20:35:05 -0500 |
commit | 4541e881568708cc9462f67abecf01ee55e6e611 (patch) | |
tree | 5cacf14713c483745c41e735fb2bfe695e749594 /toys | |
parent | 2a813ffadf19957f1798cfc68a3ea78199ce1f49 (diff) | |
download | toybox-4541e881568708cc9462f67abecf01ee55e6e611.tar.gz |
Fix thinko (inverted test).
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; |