about summary refs log tree commit diff
path: root/src/stdio/fgetwc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fgetwc.c')
-rw-r--r--src/stdio/fgetwc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdio/fgetwc.c b/src/stdio/fgetwc.c
index c990545f..77b30fd1 100644
--- a/src/stdio/fgetwc.c
+++ b/src/stdio/fgetwc.c
@@ -12,7 +12,7 @@ wint_t __fgetwc_unlocked(FILE *f)
 
 	/* Convert character from buffer if possible */
 	if (f->rpos < f->rend) {
-		l = mbrtowc(&wc, f->rpos, f->rend - f->rpos, &st);
+		l = mbrtowc(&wc, (void *)f->rpos, f->rend - f->rpos, &st);
 		if (l+2 >= 2) {
 			f->rpos += l + !l; /* l==0 means 1 byte, null */
 			return wc;
@@ -30,7 +30,7 @@ wint_t __fgetwc_unlocked(FILE *f)
 			if (!mbsinit(&st)) errno = EILSEQ;
 			return WEOF;
 		}
-		l = mbrtowc(&wc, &b, 1, &st);
+		l = mbrtowc(&wc, (void *)&b, 1, &st);
 		if (l == -1) return WEOF;
 	}