aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/df.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-09-08 23:03:48 -0500
committerRob Landley <rob@landley.net>2015-09-08 23:19:32 -0500
commita35650c83eaff85714f6483cccb7dd9c8c5bb3e8 (patch)
tree6dc28288f103512d1cdf83d6f646a61ce06089c4 /toys/posix/df.c
parent0c276c21d205cfc3d8e45581d28f02431d2eef85 (diff)
downloadtoybox-a35650c83eaff85714f6483cccb7dd9c8c5bb3e8.tar.gz
Squish a warning in pending.
Diffstat (limited to 'toys/posix/df.c')
-rw-r--r--toys/posix/df.c2
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;