aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorCharlie Shepherd <masterdriverz@gentoo.org>2007-11-10 10:25:23 +0000
committerCharlie Shepherd <masterdriverz@gentoo.org>2007-11-10 10:25:23 +0000
commitd0c379e3bdc6d4403dab8f591fd9c09a58a9b89d (patch)
tree11d43b52a25f455a13e06c54e8d5dc067fc49b34 /toys
parent00ee268e3a4c677bb46c0c0b8f97038a7f2699d8 (diff)
downloadtoybox-d0c379e3bdc6d4403dab8f591fd9c09a58a9b89d.tar.gz
Fix error message
Diffstat (limited to 'toys')
-rw-r--r--toys/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/df.c b/toys/df.c
index 60008ce8..ffff6ce4 100644
--- a/toys/df.c
+++ b/toys/df.c
@@ -79,7 +79,7 @@ int df_main(void)
// Stat it (complain if we can't).
if(stat(*next, &st)) {
- perror_msg("`%s'", next);
+ perror_msg("`%s'", *next);
toys.exitval = 1;
continue;
}