Fix errant string format char.

This commit is contained in:
Jeff Young 2022-08-03 13:38:35 +01:00
parent 37209bb496
commit e4b6da287f
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ void DisplayError( wxWindow* aParent, const wxString& aText, int aDisplayTime )
{
if( !wxTheApp || !wxTheApp->IsMainLoopRunning() )
{
wxLogDebug( "%s: %s", aDisplayTime, aText );
wxLogDebug( "%s", aText );
return;
}