7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Fix format string.

This commit is contained in:
Jeff Young 2025-03-20 09:33:55 +00:00
parent 21725eeef3
commit 0aa4f11970

View File

@ -171,7 +171,7 @@ bool PCB_PLOTTER::Plot( const wxString& aOutputPath,
&& m_plotOpts.m_PDFSingle ) )
{
// this will only be used by pdf
wxString pageNumber = wxString::Format( "%zu", pageNum );
wxString pageNumber = wxString::Format( "%d", pageNum );
wxString pageName = layerName;
wxString sheetName = layerName;