Skip to content
Snippets Groups Projects
Commit 131b2429 authored by Nicolas Thill's avatar Nicolas Thill
Browse files

fix df -h output (closes: #5290)

SVN-Revision: 16723
parent 1e9cba3b
No related branches found
No related tags found
No related merge requests found
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -53,8 +53,8 @@ int df_main(int argc, char **argv)
OPT_ALL = (1 << 2) * ENABLE_FEATURE_DF_FANCY,
OPT_INODE = (1 << 3) * ENABLE_FEATURE_DF_FANCY,
OPT_BSIZE = (1 << 4) * ENABLE_FEATURE_DF_FANCY,
- OPT_HUMAN = (1 << 5) * ENABLE_FEATURE_HUMAN_READABLE,
- OPT_MEGA = (1 << 6) * ENABLE_FEATURE_HUMAN_READABLE,
+ OPT_HUMAN = (1 << (2 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE,
+ OPT_MEGA = (1 << (3 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE,
};
const char *disp_units_hdr = NULL;
char *chp;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment