From d0c379e3bdc6d4403dab8f591fd9c09a58a9b89d Mon Sep 17 00:00:00 2001 From: Charlie Shepherd Date: Sat, 10 Nov 2007 10:25:23 +0000 Subject: Fix error message --- toys/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3