summaryrefslogtreecommitdiff
path: root/sc/source/core/tool
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-04-07 09:14:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-07 09:14:43 +0100
commit57efdf0967d636a9fc38d6f0af801b7ecf75bbee (patch)
tree4570c16f341ac5198f26333f3186765e1485b092 /sc/source/core/tool
parent7aac42dd2b1d5b7c89d9116e926c91ff85716ff7 (diff)
WaE: sal_Int32 is long on 32bit and int on 64bit
Diffstat (limited to 'sc/source/core/tool')
-rw-r--r--sc/source/core/tool/dbcolect.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/dbcolect.cxx b/sc/source/core/tool/dbcolect.cxx
index a96668e2f..2a707ebee 100644
--- a/sc/source/core/tool/dbcolect.cxx
+++ b/sc/source/core/tool/dbcolect.cxx
@@ -660,7 +660,7 @@ void ScDBData::ExtendDataArea(ScDocument* pDoc)
SCROW nRow1a = nStartRow, nRow2a = nEndRow;
pDoc->GetDataArea(nTable, nCol1a, nRow1a, nCol2a, nRow2a, false, false);
nEndRow = nRow2a;
- fprintf(stdout, "ScDBData::ExtendDataArea: new end row = %d\n", nEndRow);
+ fprintf(stdout, "ScDBData::ExtendDataArea: new end row = %"SAL_PRIdINT32"\n", nEndRow);
}
namespace {