Fix compil warning (perhaps 32 bit build specific)

This commit is contained in:
jean-pierre charras 2018-04-18 20:41:18 +02:00
parent f68268c8ca
commit 3179e40b57
1 changed files with 1 additions and 1 deletions

View File

@ -3691,7 +3691,7 @@ void SCH_LEGACY_PLUGIN_CACHE::saveBezier( LIB_BEZIER* aBezier,
{
wxCHECK_RET( aBezier && aBezier->Type() == LIB_BEZIER_T, "Invalid LIB_BEZIER object." );
aFormatter->Print( 0, "B %lu %d %d %d", aBezier->GetPoints().size(),
aFormatter->Print( 0, "B %u %d %d %d", (unsigned)aBezier->GetPoints().size(),
aBezier->GetUnit(), aBezier->GetConvert(), aBezier->GetWidth() );
for( const auto& pt : aBezier->GetPoints() )