summaryrefslogtreecommitdiff
path: root/sc/qa/unit
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-30 22:31:42 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-30 22:31:51 +0200
commit086b070e31f607ffc4b057eef54669b95d774279 (patch)
tree938bf693e7edcdf00d000c7859efcdd853a2e406 /sc/qa/unit
parent5f27719e4e501506b82bf095aa1b2b1aac5eb390 (diff)
WaE: format %d expects argument of type int, but argument 2 has type long int
Change-Id: I0fe32f14641ed2c2cf1ee4e0f03aa9bef805ef1d
Diffstat (limited to 'sc/qa/unit')
-rw-r--r--sc/qa/unit/subsequent_export-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx
index 05c48731d1a8..5829f4384dac 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -363,7 +363,7 @@ void ScExportTest::testMiscRowHeightExport()
int nExpectedHeight = aTestValues[ index ].pData[ i ].nExpectedHeight;
for ( ; nRow <= nEndRow; ++nRow )
{
- printf("\t checking row %d for height %d\n", nRow, nExpectedHeight );
+ printf("\t checking row %ld for height %d\n", nRow, nExpectedHeight );
int nHeight = sc::TwipsToHMM( pDoc->GetRowHeight(nRow, nTab, false) );
CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
}