From: Denys Vlasenko Date: Sun, 11 Oct 2009 20:29:15 +0000 (+0200) Subject: include/xatonum.h: make it survive -Wconversion X-Git-Tag: 1_16_0~396 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3c39e702d02600e9023f2f87f6e7c2c62aa27587;p=oweals%2Fbusybox.git include/xatonum.h: make it survive -Wconversion Signed-off-by: Denys Vlasenko --- diff --git a/include/xatonum.h b/include/xatonum.h index 864d2a383..978c502f6 100644 --- a/include/xatonum.h +++ b/include/xatonum.h @@ -101,7 +101,7 @@ DECLARE_STR_CONV(int, i, u) /* Specialized */ -int BUG_xatou32_unimplemented(void); +uint32_t BUG_xatou32_unimplemented(void); static ALWAYS_INLINE uint32_t xatou32(const char *numstr) { if (UINT_MAX == 0xffffffff) @@ -158,7 +158,7 @@ unsigned bb_strtou(const char *arg, char **endp, int base) FAST_FUNC; int bb_strtoi(const char *arg, char **endp, int base) FAST_FUNC; #endif -int BUG_bb_strtou32_unimplemented(void); +uint32_t BUG_bb_strtou32_unimplemented(void); static ALWAYS_INLINE uint32_t bb_strtou32(const char *arg, char **endp, int base) {