From: Karel Zak Date: Fri, 19 Dec 2014 13:34:03 +0000 (+0100) Subject: more: fix compiler warnings X-Git-Tag: v2.26-rc1~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e28ebff999612bfc02a4f85e297e136efbe514d;p=thirdparty%2Futil-linux.git more: fix compiler warnings Signed-off-by: Karel Zak --- diff --git a/text-utils/more.c b/text-utils/more.c index a75cd7a803..5c484575bd 100644 --- a/text-utils/more.c +++ b/text-utils/more.c @@ -1092,10 +1092,10 @@ void clreos(void) } -static UL_ASAN_BLACKLIST xmbrtowc(wchar_t *wc, const char *s, size_t n, +static UL_ASAN_BLACKLIST size_t xmbrtowc(wchar_t *wc, const char *s, size_t n, mbstate_t *mbstate) { - const size_t mblength = mbrtowc(&wc, s, n, &mbstate); + const size_t mblength = mbrtowc(wc, s, n, mbstate); if (mblength == (size_t)-2 || mblength == (size_t)-1) return 1; return mblength;