summaryrefslogtreecommitdiff
path: root/vcl/qa
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2015-05-07 08:27:23 +0200
committerDavid Tardon <dtardon@redhat.com>2015-05-07 08:27:23 +0200
commit93d004c544c17521eebfa6e6850dca4b532e904a (patch)
tree6572e25a55df493a416e6d3aebc6e3cecf5147c3 /vcl/qa
parent5984cc83fe756f7483d1ac582b8adbef5042be8b (diff)
WaE: format ‘%d’ expects argument of type ‘int’
Change-Id: I1697f563d21c02551088ea1469eb973a6cfc5a10
Diffstat (limited to 'vcl/qa')
-rw-r--r--vcl/qa/cppunit/graphicfilter/filters-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/graphicfilter/filters-test.cxx b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
index 9e5f79882cdd..86dafa4bb912 100644
--- a/vcl/qa/cppunit/graphicfilter/filters-test.cxx
+++ b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
@@ -67,7 +67,7 @@ void VclFiltersTest::testScaling()
Bitmap aBitmap( Size( 413, 409 ), 24 );
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 ) );
Size aAfter( aBitmapEx.GetSizePixel() );
fprintf( stderr, "size %ld, %ld\n", (long)aAfter.Width(),