From d51f37a3688c786478d24507f24508471672e821 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Wed, 20 Jul 2011 22:00:02 +0200 Subject: cramfs: use stdint.h instead of u{8,16,32} Signed-off-by: Sami Kerola --- disk-utils/cramfs_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'disk-utils/cramfs_common.c') diff --git a/disk-utils/cramfs_common.c b/disk-utils/cramfs_common.c index c76dbd1cf..f4a257dd0 100644 --- a/disk-utils/cramfs_common.c +++ b/disk-utils/cramfs_common.c @@ -20,7 +20,7 @@ #include "cramfs.h" #include "../include/bitops.h" -u32 u32_toggle_endianness(int big_endian, u32 what) +uint32_t u32_toggle_endianness(int big_endian, uint32_t what) { return big_endian == HOST_IS_BIG_ENDIAN ? what : swab32(what); } -- cgit v1.2.3-55-g7522