Commit 658ff605 authored by Dick Hollenbeck's avatar Dick Hollenbeck

fix warnings

parent 534bb97d
...@@ -395,7 +395,7 @@ static void OuputOnePolygon( BITMAPCONV_INFO& aInfo, ...@@ -395,7 +395,7 @@ static void OuputOnePolygon( BITMAPCONV_INFO& aInfo,
int width = 1; int width = 1;
fprintf( aInfo.m_Outfile, "DP %d %d %d %d %d %d %d\n", fprintf( aInfo.m_Outfile, "DP %d %d %d %d %d %d %d\n",
0, 0, 0, 0, 0, 0, 0, 0,
aPolygonBuffer.size()+1, int(aPolygonBuffer.size()+1),
width, layer ); width, layer );
for( ii = 0; ii < aPolygonBuffer.size(); ii++ ) for( ii = 0; ii < aPolygonBuffer.size(); ii++ )
...@@ -410,7 +410,7 @@ static void OuputOnePolygon( BITMAPCONV_INFO& aInfo, ...@@ -410,7 +410,7 @@ static void OuputOnePolygon( BITMAPCONV_INFO& aInfo,
break; break;
case EESCHEMA_FMT: case EESCHEMA_FMT:
fprintf( aInfo.m_Outfile, "P %d 0 0 1", aPolygonBuffer.size()+1 ); fprintf( aInfo.m_Outfile, "P %d 0 0 1", int(aPolygonBuffer.size()+1) );
for( ii = 0; ii < aPolygonBuffer.size(); ii++ ) for( ii = 0; ii < aPolygonBuffer.size(); ii++ )
fprintf( aInfo.m_Outfile, " %d %d", fprintf( aInfo.m_Outfile, " %d %d",
(int) ( aPolygonBuffer[ii].x * aInfo.m_ScaleX - offsetX ), (int) ( aPolygonBuffer[ii].x * aInfo.m_ScaleX - offsetX ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment