Remove unnecessary part of previous change.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 16 Oct 2006 23:43:11 +0000 (23:43 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 16 Oct 2006 23:43:11 +0000 (23:43 +0000)
lib/fsusage.c

index 7d84a9f..a305979 100644 (file)
@@ -61,7 +61,7 @@
    a uintmax_t value that is all 1 bits if X is all 1 bits, even if X
    is unsigned and narrower than uintmax_t.  */
 #define PROPAGATE_ALL_ONES(x) \
-  ((sizeof (x) != sizeof (uintmax_t) \
+  ((sizeof (x) < sizeof (uintmax_t) \
     && (~ (x) == (sizeof (x) < sizeof (int) \
                  ? - (1 << (sizeof (x) * CHAR_BIT)) \
                  : 0))) \