[lldb] vwprintw -> vw_printw in IOHandlerCursesGUI

`vwprintw` is (in theory) using the `arargs.h` va_list while `vw_printw` is
using the `stdarg.h` va_list. It seems these days they can be used
interchangeably but `vwprintw` is marked as deprecated.
This commit is contained in:
Raphael Isemann 2021-06-16 13:02:18 +02:00
parent 323b3e645d
commit 3b7795aece
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ public:
void Printf(const char *format, ...) __attribute__((format(printf, 2, 3))) {
va_list args;
va_start(args, format);
vwprintw(m_window, format, args);
vw_printw(m_window, format, args);
va_end(args);
}