diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-04-07 09:14:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-04-07 09:14:43 +0100 |
commit | 57efdf0967d636a9fc38d6f0af801b7ecf75bbee (patch) | |
tree | 4570c16f341ac5198f26333f3186765e1485b092 /sc/source/core/tool/dbcolect.cxx | |
parent | 7aac42dd2b1d5b7c89d9116e926c91ff85716ff7 (diff) |
WaE: sal_Int32 is long on 32bit and int on 64bit
Diffstat (limited to 'sc/source/core/tool/dbcolect.cxx')
-rw-r--r-- | sc/source/core/tool/dbcolect.cxx | 2 |
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 { |