Revision: 34780
http://sourceforge.net/p/opalvoip/code/34780
Author: rjongbloed
Date: 2016-04-18 16:58:08 +0000 (Mon, 18 Apr 2016)
Log Message:
-----------
Fixed compiler warning.
Modified Paths:
--------------
ptlib/branches/v2_16/include/ptlib/osutil.inl
Modified: ptlib/branches/v2_16/include/ptlib/osutil.inl
===================================================================
--- ptlib/branches/v2_16/include/ptlib/osutil.inl 2016-04-18 12:59:06 UTC (rev 34779)
+++ ptlib/branches/v2_16/include/ptlib/osutil.inl 2016-04-18 16:58:08 UTC (rev 34780)
@@ -176,7 +176,7 @@
{ return PNEW PTime(*this); }
PINLINE PBoolean PTime::IsValid() const
- { return m_microSecondsSinceEpoch.load() > 46800000000; }
+ { return m_microSecondsSinceEpoch.load() > 46800000000LL; }
PINLINE PInt64 PTime::GetTimestamp() const
{ return m_microSecondsSinceEpoch.load(); }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|