diff --git a/src/kernel/libroot/posix/stdio/vfprintf.c b/src/kernel/libroot/posix/stdio/vfprintf.c index cfc2a34ef2..64f0689493 100644 --- a/src/kernel/libroot/posix/stdio/vfprintf.c +++ b/src/kernel/libroot/posix/stdio/vfprintf.c @@ -171,7 +171,7 @@ vfprintf(fp, fmt0, ap) int width; /* width from format (%8d), or 0 */ int prec; /* precision from format (%.3d), or -1 */ char sign; /* sign prefix (' ', '+', '-', or \0) */ - int wc; + wchar_t wc; #ifdef FLOATING_POINT char *decimal_point = localeconv()->decimal_point; char softsign; /* temporary negative sign for floats */