diff options
Diffstat (limited to 'qt/ScintillaEditBase/PlatQt.cpp')
-rw-r--r-- | qt/ScintillaEditBase/PlatQt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp index 96b05a855..a9bb4b0f9 100644 --- a/qt/ScintillaEditBase/PlatQt.cpp +++ b/qt/ScintillaEditBase/PlatQt.cpp @@ -1319,7 +1319,7 @@ void Platform::DebugDisplay(const char *s) noexcept void Platform::DebugPrintf(const char *format, ...) noexcept { char buffer[2000]; - va_list pArguments; + va_list pArguments{}; va_start(pArguments, format); vsprintf(buffer, format, pArguments); va_end(pArguments); |