From aa8b812cace09efe5e21f191761a5258b266b87b Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Wed, 20 Feb 2013 01:07:30 +0000 Subject: [PATCH] vfprintf: use putc_unlocked --- functions/stdio/vfprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index f9562d2..b8e9194 100644 --- a/functions/stdio/vfprintf.c +++ b/functions/stdio/vfprintf.c @@ -37,7 +37,7 @@ int vfprintf_unlocked( FILE * _PDCLIB_restrict stream, if ( ( *format != '%' ) || ( ( rc = _PDCLIB_print( format, &status ) ) == format ) ) { /* No conversion specifier, print verbatim */ - putc( *(format++), stream ); + _PDCLIB_putc_unlocked( *(format++), stream ); status.i++; } else -- 2.40.0