From: Jim Meyering Date: Wed, 24 Jun 1998 03:02:06 +0000 (+0000) Subject: (show_dev): Increase field width for blocks, used, X-Git-Tag: FILEUTILS-3_16q~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de45950430855cdff58bca4f721c24ccd9e237d2;p=thirdparty%2Fcoreutils.git (show_dev): Increase field width for blocks, used, and available columns from 7 to 8. --- diff --git a/src/df.c b/src/df.c index 82cb419e81..53fbedf471 100644 --- a/src/df.c +++ b/src/df.c @@ -267,7 +267,7 @@ show_dev (const char *disk, const char *mount_point, const char *fstype) } else { - int w = human_readable_base ? 5 : 7; + int w = human_readable_base ? 5 : 8; char buf[2][LONGEST_HUMAN_READABLE + 1]; char availbuf[LONGEST_HUMAN_READABLE + 2]; char *avail;