diff --git a/kml/visitors.hpp b/kml/visitors.hpp index 21945809e9..43f6718ad9 100644 --- a/kml/visitors.hpp +++ b/kml/visitors.hpp @@ -492,7 +492,7 @@ public: auto v = ReadVarUint(m_source); if (v > 32503680000) // If timestamp is older than 01 Jan 3000 it means that v contains milliseconds instead of seconds. v /= 1000; - t = FromSecondsSinceEpoch(v/1000); + t = FromSecondsSinceEpoch(v); } void operator()(double & d, char const * /* name */ = nullptr)