diff options
author | Rob Landley <rob@landley.net> | 2015-09-08 23:03:48 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-09-08 23:19:32 -0500 |
commit | a35650c83eaff85714f6483cccb7dd9c8c5bb3e8 (patch) | |
tree | 6dc28288f103512d1cdf83d6f646a61ce06089c4 /toys | |
parent | 0c276c21d205cfc3d8e45581d28f02431d2eef85 (diff) | |
download | toybox-a35650c83eaff85714f6483cccb7dd9c8c5bb3e8.tar.gz |
Squish a warning in pending.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |