diff options
Diffstat (limited to 'src/misc/str.hpp')
-rw-r--r-- | src/misc/str.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/str.hpp b/src/misc/str.hpp index 8ef8e8f87..9a4663a6e 100644 --- a/src/misc/str.hpp +++ b/src/misc/str.hpp @@ -100,7 +100,7 @@ struct CStrA : public CBlobT<char> } /** Add formated string (like sprintf) at the end of existing contents. */ - int AddFormat(const char *format, ...) + int CDECL AddFormat(const char *format, ...) WARN_FORMAT(2, 3) { va_list args; va_start(args, format); @@ -110,7 +110,7 @@ struct CStrA : public CBlobT<char> } /** Assign formated string (like sprintf). */ - int Format(const char *format, ...) + int CDECL Format(const char *format, ...) WARN_FORMAT(2, 3) { base::Free(); va_list args; |