summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-12 11:00:43 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-12 11:01:54 +0200
commita451edce98f60b3b66b090a9cbbd3977901e1a14 (patch)
tree8dc650502e14d591fde5b39190ce164e48b4531b /dbaccess
parentecf40304b494e1783c09a1a1d55fd6d11894b366 (diff)
another fix for Android
Change-Id: I21802c695e2ca4fbc7ff0dd08880dfa262ca9a33
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/filter/hsqldb/rowinputbinary.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
index b0ca420f13df..30097d59f78b 100644
--- a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
+++ b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
@@ -324,7 +324,7 @@ std::vector<Any> HsqlRowInputStream::readOneRow(const ColumnTypeVector& nColType
{
sal_Int64 nEpochMillis = 0;
m_pStream->ReadInt64(nEpochMillis);
- sal_Int64 nEpochSec = nEpochMillis / 1000;
+ std::time_t nEpochSec = nEpochMillis / 1000;
std::tm* tm = std::gmtime(&nEpochSec);
sal_Int32 nNanos = 0;