summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2020-06-27 09:01:31 +0100
committerCharles Pigott <charlespigott@googlemail.com>2020-06-27 14:51:14 +0100
commit64b1c70fddc8b7ef2e8f629d6e5e1749f21a0e4b (patch)
treeb5bbd4c1701a1ef50892744a4d5f5f27a7f3d3ff /src/misc
parent224acb78b03defd075aafec9d3340b3bc0dcedfc (diff)
downloadopenttd-64b1c70fddc8b7ef2e8f629d6e5e1749f21a0e4b.tar.xz
Codechange: Add WARN_FORMAT to vseprintf and fix the cascade of warnings that followed
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/str.hpp2
1 files changed, 1 insertions, 1 deletions
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<char>
}
/** 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<size_t>(strlen(format), 16);
addSize += addSize / 2;