# HG changeset patch # User Charlie Shepherd # Date 1194690323 0 # Node ID c79290b54bd356259b46a87c74dd3acd729a7d29 # Parent a913f894b7d8e22d1df84372cb8e389d65a912f0 Fix error message diff -r a913f894b7d8 -r c79290b54bd3 toys/df.c --- a/toys/df.c Thu Nov 15 20:43:35 2007 -0600 +++ b/toys/df.c Sat Nov 10 10:25:23 2007 +0000 @@ -79,7 +79,7 @@ // Stat it (complain if we can't). if(stat(*next, &st)) { - perror_msg("`%s'", next); + perror_msg("`%s'", *next); toys.exitval = 1; continue; }