diff options
author | Jim Meyering <jim@meyering.net> | 2002-09-26 08:20:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-09-26 08:20:32 +0000 |
commit | 2c6d70041831caecabd417acaac562e3655e4db9 (patch) | |
tree | 3bd79156d0a77578ce84b41c1573965ae6dba349 | |
parent | 4b0eb25d6dbfa53393c7bfaac582672159d997d8 (diff) | |
download | coreutils-2c6d70041831caecabd417acaac562e3655e4db9.tar.xz |
*** empty log message ***
-rw-r--r-- | lib/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 153805467..70c859569 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,13 @@ +2002-09-25 Paul Eggert <eggert@twinsun.com> + + * fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>. + (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro. + (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than + int. Work more efficiently if X is the same width as uintmax_t. + Do not compare X to -1, to avoid bogus compiler warning. + (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast. + Don't assume that f_frsize and f_bsize are the same type. + 2002-09-25 Jim Meyering <meyering@lucent.com> * fsusage.c: Remove unneeded parentheses around operands of `defined'. |