I installed this minor patch:

2006-10-16  Paul Eggert  <[EMAIL PROTECTED]>

        * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
        at least as wide as intmax_t.

--- lib/fsusage.c       5 Oct 2006 21:23:21 -0000       1.56
+++ lib/fsusage.c       16 Oct 2006 23:43:11 -0000      1.58
@@ -65,7 +65,7 @@
     && (~ (x) == (sizeof (x) < sizeof (int) \
                  ? - (1 << (sizeof (x) * CHAR_BIT)) \
                  : 0))) \
-   ? UINTMAX_MAX : (x))
+   ? UINTMAX_MAX : (uintmax_t) (x))
 
 /* Extract the top bit of X as an uintmax_t value.  */
 #define EXTRACT_TOP_BIT(x) ((x) \


Reply via email to