diff options
-rw-r--r-- | sal/qa/osl/process/osl_Thread.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sal/qa/osl/process/osl_Thread.cxx b/sal/qa/osl/process/osl_Thread.cxx index f895a28c54b6..756df0bf2adb 100644 --- a/sal/qa/osl/process/osl_Thread.cxx +++ b/sal/qa/osl/process/osl_Thread.cxx @@ -84,8 +84,10 @@ StopWatch::StopWatch() , m_bIsValid(false) , m_bIsRunning(false) { - t1 = {0, 0}; - t2 = {0, 0}; + t1.Seconds = 0; + t1.Nanosec = 0; + t2.Seconds = 0; + t2.Nanosec = 0; } void StopWatch::start() |