From 6b70cb0b054df34aabb755d7aa91b8bb74a271ac Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 11 Oct 2015 17:35:36 +0200 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/stdio/printf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stdio/printf.c b/src/stdio/printf.c index 7e8d3d3..7e89378 100644 --- a/src/stdio/printf.c +++ b/src/stdio/printf.c @@ -216,9 +216,9 @@ static int write_stream(const char* text, size_t length, FILE* stream) * * @throws Any error specified for `fwrite_unlocked`. */ -static int write_wstream(const wchar_t* text, size_t length, FILE* stream) +static int wwrite_stream(const wchar_t* text, size_t length, FILE* stream) { - /* TODO write_wstream */ + /* TODO wwrite_stream */ return 0; (void) text, (void) length, (void) stream; } @@ -1059,7 +1059,7 @@ int vfwprintf(FILE* restrict stream, const wchar_t* restrict format, va_list arg */ int vfwprintf_unlocked(FILE* restrict stream, const wchar_t* restrict format, va_list args) { - P_WCHAR(write_wstream, 0, 0, 0, stream); + P_WCHAR(wwrite_stream, 0, 0, 0, stream); } -- cgit v1.2.3-70-g09d2