diff options
Diffstat (limited to 'coreutils/df.c')
-rw-r--r-- | coreutils/df.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index fba59e791..7eb82cd46 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -47,7 +47,7 @@ int df_main(int argc, char **argv) | |||
47 | 47 | ||
48 | #if ENABLE_FEATURE_HUMAN_READABLE | 48 | #if ENABLE_FEATURE_HUMAN_READABLE |
49 | opt_complementary = "h-km:k-hm:m-hk"; | 49 | opt_complementary = "h-km:k-hm:m-hk"; |
50 | opt = getopt32(argc, argv, "hmk"); | 50 | opt = getopt32(argv, "hmk"); |
51 | if (opt & 1) { | 51 | if (opt & 1) { |
52 | df_disp_hr = 0; | 52 | df_disp_hr = 0; |
53 | disp_units_hdr = " Size"; | 53 | disp_units_hdr = " Size"; |
@@ -57,7 +57,7 @@ int df_main(int argc, char **argv) | |||
57 | disp_units_hdr = "1M-blocks"; | 57 | disp_units_hdr = "1M-blocks"; |
58 | } | 58 | } |
59 | #else | 59 | #else |
60 | opt = getopt32(argc, argv, "k"); | 60 | opt = getopt32(argv, "k"); |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | printf("Filesystem%11s%-15sUsed Available Use%% Mounted on\n", | 63 | printf("Filesystem%11s%-15sUsed Available Use%% Mounted on\n", |