Fix format string.

This commit is contained in:
Jeff Young
2025-03-20 09:48:08 +00:00
parent 21725eeef3
commit 0aa4f11970
+1 -1
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;