Fix incorrect format on Windows 32 bits (in a message only in Debug)

This commit is contained in:
jean-pierre charras 2017-10-17 09:55:32 +02:00
parent 1e35d45948
commit 537804b5e8
1 changed files with 1 additions and 1 deletions

View File

@ -825,7 +825,7 @@ void CN_CONNECTIVITY_ALGO::FindIsolatedCopperIslands( ZONE_CONTAINER* aZone, std
}
}
wxLogTrace( "CN", "Found %llu isolated islands\n", aIslands.size() );
wxLogTrace( "CN", "Found %u isolated islands\n", (unsigned)aIslands.size() );
}