summaryrefslogtreecommitdiffstats
path: root/dbaccess
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-09-12 17:26:38 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-09-12 20:37:54 -0500
commit24f277a4ad53a8655902d5fb3aab05643d90f57e (patch)
tree45d13da0c5f44edfce1030d81656825f5c3343b7 /dbaccess
parentChange so that we won't have to include mtvelements.hxx in cellvalue.hxx. (diff)
downloadcore-24f277a4ad53a8655902d5fb3aab05643d90f57e.tar.gz
core-24f277a4ad53a8655902d5fb3aab05643d90f57e.zip
Do not use int64 litteral without the proper wrapping
Change-Id: I879a47720f337b57038ac3207cb466aa42d0beeb
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/qa/unit/firebird.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/qa/unit/firebird.cxx b/dbaccess/qa/unit/firebird.cxx
index 183d83dfbcd1..78b7e6695893 100644
--- a/dbaccess/qa/unit/firebird.cxx
+++ b/dbaccess/qa/unit/firebird.cxx
@@ -75,7 +75,7 @@ void FirebirdTest::testIntegerDatabase()
xRow->getShort(xColumnLocate->findColumn("_SMALLINT")));
CPPUNIT_ASSERT(sal_Int32(-2100000000) ==
xRow->getInt(xColumnLocate->findColumn("_INT")));
- CPPUNIT_ASSERT(sal_Int64(-9000000000000000000) ==
+ CPPUNIT_ASSERT(SAL_CONST_INT64(-9000000000000000000) ==
xRow->getLong(xColumnLocate->findColumn("_BIGINT")));
CPPUNIT_ASSERT(OUString("5") ==
xRow->getString(xColumnLocate->findColumn("_CHAR")));