diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-04-20 17:31:26 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-04-20 21:39:47 -0500 |
commit | 693d25f8a601ee3738a396fbd8a9b838f19e39c9 (patch) | |
tree | 762a1d09ac48ffa62a97d7824955d34b96c40dc7 /connectivity | |
parent | a049c87ba59e3dde2ce1178e088530469e3d381b (diff) |
connectivity: use LL qualifier for int64 contants
Change-Id: Iaafbd62920c2b695c5810766d143a01c288e813f
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/dbconversion.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/commontools/dbconversion.cxx b/connectivity/source/commontools/dbconversion.cxx index b23cd3b0de8b..0150cdd78f88 100644 --- a/connectivity/source/commontools/dbconversion.cxx +++ b/connectivity/source/commontools/dbconversion.cxx @@ -39,8 +39,8 @@ namespace const sal_Int16 minInHour = 60; const sal_Int64 secMask = 1000000000; - const sal_Int64 minMask = 100000000000; - const sal_Int64 hourMask = 10000000000000; + const sal_Int64 minMask = 100000000000LL; + const sal_Int64 hourMask = 10000000000000LL; const double fNanoSecondsPerDay = nanoSecInSec * secInMin * minInHour * 24.0; } |