diff options
Diffstat (limited to 'lib/System/Unix')
-rw-r--r-- | lib/System/Unix/TimeValue.cpp | 2 | ||||
-rw-r--r-- | lib/System/Unix/TimeValue.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/System/Unix/TimeValue.cpp b/lib/System/Unix/TimeValue.cpp index 6b476c86ca..d140af9add 100644 --- a/lib/System/Unix/TimeValue.cpp +++ b/lib/System/Unix/TimeValue.cpp @@ -37,7 +37,7 @@ std::string TimeValue::toString() { TimeValue TimeValue::now() { struct timeval the_time; - ::timerclear(&the_time); + timerclear(&the_time); if (0 != ::gettimeofday(&the_time,0)) ThrowErrno("Couldn't obtain time of day"); diff --git a/lib/System/Unix/TimeValue.inc b/lib/System/Unix/TimeValue.inc index 6b476c86ca..d140af9add 100644 --- a/lib/System/Unix/TimeValue.inc +++ b/lib/System/Unix/TimeValue.inc @@ -37,7 +37,7 @@ std::string TimeValue::toString() { TimeValue TimeValue::now() { struct timeval the_time; - ::timerclear(&the_time); + timerclear(&the_time); if (0 != ::gettimeofday(&the_time,0)) ThrowErrno("Couldn't obtain time of day"); |