libbb: make warning go away
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 12 Mar 2011 01:19:50 +0000 (02:19 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 12 Mar 2011 01:19:50 +0000 (02:19 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/progress.c

index df43dad5cbae3d0cb4ca9bfd1f448a924067c354..372feb0c2423e155de181c66b031113065ff43c0 100644 (file)
@@ -127,10 +127,12 @@ void FAST_FUNC bb_progress_update(bb_progress_t *p,
                /* 32-bit CPU and 64-bit off_t.
                 * Use a 40-bit shift, it is easier to do on 32-bit CPU.
                 */
-               if (totalsize >= (uoff_t)(1ULL << 54)) {
-                       totalsize = (uint32_t)(totalsize >> 32) >> 8;
-                       beg_size = (uint32_t)(beg_size >> 32) >> 8;
-                       transferred = (uint32_t)(transferred >> 32) >> 8;
+/* ONE suppresses "warning: shift count >= width of type" */
+#define ONE (sizeof(off_t) > 4)
+               if (totalsize >= (uoff_t)(1ULL << 54*ONE)) {
+                       totalsize = (uint32_t)(totalsize >> 32*ONE) >> 8;
+                       beg_size = (uint32_t)(beg_size >> 32*ONE) >> 8;
+                       transferred = (uint32_t)(transferred >> 32*ONE) >> 8;
                        kiloscale = 4;
                }
        }