From e4b6da287f91666890c338651c5dffca86848333 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 3 Aug 2022 13:38:35 +0100 Subject: [PATCH] Fix errant string format char. --- common/confirm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/confirm.cpp b/common/confirm.cpp index 4c9d939405..ad1819a6ba 100644 --- a/common/confirm.cpp +++ b/common/confirm.cpp @@ -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; }