aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}