[Libreoffice-commits] .: sc/source

Caolán McNamara caolan at kemper.freedesktop.org
Thu Apr 7 01:15:01 PDT 2011


 sc/source/core/tool/dbcolect.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 57efdf0967d636a9fc38d6f0af801b7ecf75bbee
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Apr 7 09:14:43 2011 +0100

    WaE: sal_Int32 is long on 32bit and int on 64bit

diff --git a/sc/source/core/tool/dbcolect.cxx b/sc/source/core/tool/dbcolect.cxx
index a96668e..2a707eb 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 {


More information about the Libreoffice-commits mailing list