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)); }