From 662a267c9b52f256b027d0f176a846b1d973ab99 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 2 Jan 2013 02:00:35 -0600 Subject: Have error_msg() and friends set TT.exitval to 1 if it's still 0, clean out other places that were setting it that no longer need to. --- toys/posix/df.c | 1 - 1 file changed, 1 deletion(-) (limited to 'toys/posix/df.c') diff --git a/toys/posix/df.c b/toys/posix/df.c index 5641ff34..957e80b2 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -120,7 +120,6 @@ void df_main(void) // Stat it (complain if we can't). if(stat(*next, &st)) { perror_msg("`%s'", *next); - toys.exitval = 1; continue; } -- cgit v1.2.3