return remainder;
}
-/* Get platform block shift */
-static int get_blk_shift(void)
-{
- int shift;
- for (shift = 0; shift < 32; ++shift)
- {
- if ((1<<shift) & S_BLKSIZE)
- break;
- }
- return shift;
-}
-
/* Messages show up at the bottom */
static void printmsg(const char *msg)
{
cfg.blkorder ^= 1;
nftw_fn = &sum_bsizes;
cfg.apparentsz = 0;
- BLK_SHIFT = get_blk_shift();
+ BLK_SHIFT = ffs(S_BLKSIZE) - 1;
}
if (cfg.blkorder) {
int opt;
// Get platform block shift
- BLK_SHIFT = get_blk_shift();
+ BLK_SHIFT = ffs(S_BLKSIZE) - 1;
/* Confirm we are in a terminal */
if (!isatty(0) || !isatty(1)) {