]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/vfprintf.c
vfprintf: use putc_unlocked
[pdclib.old] / functions / stdio / vfprintf.c
index f9562d2e137d04e37ca3fe384334f1d87674f369..b8e91943b2449057cb4e144f8546d4fbe2882191 100644 (file)
@@ -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