From 9cd334faa287b3d858f20e94b39755b2c6d0ec8e Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Tue, 2 Aug 2016 17:18:32 +0200 Subject: [PATCH] Fix function name --- printf/include/printf_def.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printf/include/printf_def.hpp b/printf/include/printf_def.hpp index df8cd664..9b7f8d41 100644 --- a/printf/include/printf_def.hpp +++ b/printf/include/printf_def.hpp @@ -193,7 +193,7 @@ std::string sprintf(const std::string& format, ...){ return std::move(s); } -void printf(const std::string& format, va_list va){ +void vprintf(const std::string& format, va_list va){ __printf(vsprintf(format, va)); }