mirror of
https://github.com/sheumann/hush.git
synced 2024-11-19 23:31:39 +00:00
libbb: make warning go away
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
48b6f59e19
commit
8345b2bd5e
@ -127,10 +127,12 @@ void FAST_FUNC bb_progress_update(bb_progress_t *p,
|
|||||||
/* 32-bit CPU and 64-bit off_t.
|
/* 32-bit CPU and 64-bit off_t.
|
||||||
* Use a 40-bit shift, it is easier to do on 32-bit CPU.
|
* Use a 40-bit shift, it is easier to do on 32-bit CPU.
|
||||||
*/
|
*/
|
||||||
if (totalsize >= (uoff_t)(1ULL << 54)) {
|
/* ONE suppresses "warning: shift count >= width of type" */
|
||||||
totalsize = (uint32_t)(totalsize >> 32) >> 8;
|
#define ONE (sizeof(off_t) > 4)
|
||||||
beg_size = (uint32_t)(beg_size >> 32) >> 8;
|
if (totalsize >= (uoff_t)(1ULL << 54*ONE)) {
|
||||||
transferred = (uint32_t)(transferred >> 32) >> 8;
|
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;
|
kiloscale = 4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user