summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-31 07:55:31 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-31 07:55:40 +0200
commit21a807456e4e7f141bb0165b43323c2202c0273c (patch)
tree30014f9e18ae03b8f924217c0352ea3d37e28037 /sc
parent338140e5201bc23625eacd1a4740622e6241cbc2 (diff)
Meh, use SAL_PRIdINT32
Change-Id: I8ce0d94e7946175d1b287ba85567f9bb414f4152
Diffstat (limited to 'sc')
-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 5829f4384dac..d39eb1193347 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 %ld for height %d\n", nRow, nExpectedHeight );
+ printf("\t checking row %"SAL_PRIdINT32" for height %d\n", nRow, nExpectedHeight );
int nHeight = sc::TwipsToHMM( pDoc->GetRowHeight(nRow, nTab, false) );
CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
}