From 2e28ebff999612bfc02a4f85e297e136efbe514d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Fri, 19 Dec 2014 14:34:03 +0100 Subject: more: fix compiler warnings Signed-off-by: Karel Zak --- text-utils/more.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text-utils/more.c') diff --git a/text-utils/more.c b/text-utils/more.c index a75cd7a80..5c484575b 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; -- cgit v1.2.3-55-g7522