From: Denys Vlasenko Date: Thu, 15 Feb 2018 12:46:34 +0000 (+0100) Subject: mkfs_ext2, mkfs_vfat: fix warnings in STORE_LE on big-endian platforms X-Git-Tag: 1_29_0~234 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7398892ac0592999397532ba168376edd402438c;p=oweals%2Fbusybox.git mkfs_ext2, mkfs_vfat: fix warnings in STORE_LE on big-endian platforms "warning: large integer implicitly truncated to unsigned type [-Woverflow]" Signed-off-by: Denys Vlasenko --- diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c index 8434dd6ad..f524bc239 100644 --- a/util-linux/mkfs_ext2.c +++ b/util-linux/mkfs_ext2.c @@ -83,11 +83,11 @@ char BUG_wrong_field_size(void); #define STORE_LE(field, value) \ do { \ if (sizeof(field) == 4) \ - field = SWAP_LE32(value); \ + field = SWAP_LE32((uint32_t)(value)); \ else if (sizeof(field) == 2) \ - field = SWAP_LE16(value); \ + field = SWAP_LE16((uint16_t)(value)); \ else if (sizeof(field) == 1) \ - field = (value); \ + field = (uint8_t)(value); \ else \ BUG_wrong_field_size(); \ } while (0) diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index 426854b1e..26a919536 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c @@ -210,11 +210,11 @@ void BUG_unsupported_field_size(void); #define STORE_LE(field, value) \ do { \ if (sizeof(field) == 4) \ - field = SWAP_LE32(value); \ + field = SWAP_LE32((uint32_t)(value)); \ else if (sizeof(field) == 2) \ - field = SWAP_LE16(value); \ + field = SWAP_LE16((uint16_t)(value)); \ else if (sizeof(field) == 1) \ - field = (value); \ + field = (uint8_t)(value); \ else \ BUG_unsupported_field_size(); \ } while (0)