From 64b1c70fddc8b7ef2e8f629d6e5e1749f21a0e4b Mon Sep 17 00:00:00 2001 From: Charles Pigott Date: Sat, 27 Jun 2020 09:01:31 +0100 Subject: Codechange: Add WARN_FORMAT to vseprintf and fix the cascade of warnings that followed --- src/misc/str.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc/str.hpp') diff --git a/src/misc/str.hpp b/src/misc/str.hpp index e93ce5efc..9555681df 100644 --- a/src/misc/str.hpp +++ b/src/misc/str.hpp @@ -90,7 +90,7 @@ struct CStrA : public CBlobT } /** Add formatted string (like vsprintf) at the end of existing contents. */ - int AddFormatL(const char *format, va_list args) + int AddFormatL(const char *format, va_list args) WARN_FORMAT(2, 0) { size_t addSize = max(strlen(format), 16); addSize += addSize / 2; -- cgit v1.2.3-54-g00ecf