diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-09-12 17:26:38 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-09-12 20:37:54 -0500 |
commit | 24f277a4ad53a8655902d5fb3aab05643d90f57e (patch) | |
tree | 45d13da0c5f44edfce1030d81656825f5c3343b7 /dbaccess/qa | |
parent | c86b1a5c352df806166fc674fb3b85d334e4cb55 (diff) |
Do not use int64 litteral without the proper wrapping
Change-Id: I879a47720f337b57038ac3207cb466aa42d0beeb
Diffstat (limited to 'dbaccess/qa')
-rw-r--r-- | dbaccess/qa/unit/firebird.cxx | 2 |
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"))); |