From a35650c83eaff85714f6483cccb7dd9c8c5bb3e8 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 8 Sep 2015 23:03:48 -0500 Subject: Squish a warning in pending. --- toys/posix/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/df.c') diff --git a/toys/posix/df.c b/toys/posix/df.c index bc153615..f5e2542a 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -99,7 +99,7 @@ void df_main(void) // until we've looked at all the filesystems. if (toys.optflags & (FLAG_H|FLAG_h)) { TT.units = 1; - xprintf("Filesystem Size Used Avail Use% Mounted on\n"); + xprintf("Filesystem Size Used Avail Use%% Mounted on\n"); } else { // Units are 512 bytes if you select "pedantic" without "kilobytes". TT.units = p ? 512 : 1024; -- cgit v1.2.3