Fix bogus format string replacement type.

Fixes https://gitlab.com/kicad/code/kicad/issues/13426
This commit is contained in:
Jeff Young 2023-01-07 19:31:54 +00:00
parent bc50f537ff
commit 22144ae0d0
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void SCH_NAVIGATE_TOOL::HypertextCommand( const wxString& href )
}
}
m_frame->ShowInfoBarError( wxString::Format( _( "Page '%d' not found." ), destPage ) );
m_frame->ShowInfoBarError( wxString::Format( _( "Page '%s' not found." ), destPage ) );
}
else
{