Fix compile error with UTF8 unicode wxWidgets build

Fixes https://gitlab.com/kicad/code/kicad/issues/10210

(Cherry-picked from bd828f598c)
This commit is contained in:
Ian McInerney 2022-01-05 19:23:02 +00:00
parent abaee94109
commit 1ad1cf8374
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ public:
void DoTraceUtf8( const wxString aWhat, const wxChar* aFmt, ... )
{
va_list argptr;
va_start( argptr, format );
va_start( argptr, aFmt );
traceV( aWhat, aFmt, argptr );
va_end( argptr );
}