Kaydet (Commit) 93d004c5 authored tarafından David Tardon's avatar David Tardon

WaE: format ‘%d’ expects argument of type ‘int’

Change-Id: I1697f563d21c02551088ea1469eb973a6cfc5a10
üst 5984cc83
...@@ -67,7 +67,7 @@ void VclFiltersTest::testScaling() ...@@ -67,7 +67,7 @@ void VclFiltersTest::testScaling()
Bitmap aBitmap( Size( 413, 409 ), 24 ); Bitmap aBitmap( Size( 413, 409 ), 24 );
BitmapEx aBitmapEx( aBitmap ); BitmapEx aBitmapEx( aBitmap );
fprintf( stderr, "scale with type %d\n", i ); fprintf( stderr, "scale with type %d\n", int( i ) );
CPPUNIT_ASSERT( aBitmapEx.Scale( 0.1937046, 0.193154, i ) ); CPPUNIT_ASSERT( aBitmapEx.Scale( 0.1937046, 0.193154, i ) );
Size aAfter( aBitmapEx.GetSizePixel() ); Size aAfter( aBitmapEx.GetSizePixel() );
fprintf( stderr, "size %ld, %ld\n", (long)aAfter.Width(), fprintf( stderr, "size %ld, %ld\n", (long)aAfter.Width(),
......
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