diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:42:02 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:42:02 +0000 |
commit | 4eff18189a5ec3d474709dd73698ff5dcbc603c6 (patch) | |
tree | 31437c2d09e30fdb107cd256208041d05bb1429d /coreutils/df.c | |
parent | cad5364599eb5062d59e0c397ed638ddd61a8d5d (diff) | |
download | busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.tar.gz busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.tar.bz2 busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.zip |
Things my compiler didn't catch...
Diffstat (limited to 'coreutils/df.c')
-rw-r--r-- | coreutils/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index 7d007a003..cbe316920 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -59,7 +59,7 @@ extern int df_main(int argc, char **argv) | |||
59 | FILE *mount_table; | 59 | FILE *mount_table; |
60 | struct mntent *mount_entry; | 60 | struct mntent *mount_entry; |
61 | struct statfs s; | 61 | struct statfs s; |
62 | static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */; | 62 | static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */ |
63 | const char *disp_units_hdr = hdr_1k; | 63 | const char *disp_units_hdr = hdr_1k; |
64 | 64 | ||
65 | while ((opt = getopt(argc, argv, "k" | 65 | while ((opt = getopt(argc, argv, "k" |