summaryrefslogtreecommitdiff
path: root/include/salhelper
diff options
context:
space:
mode:
Diffstat (limited to 'include/salhelper')
-rw-r--r--include/salhelper/timer.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/salhelper/timer.hxx b/include/salhelper/timer.hxx
index 440790432f59..f6e67f454270 100644
--- a/include/salhelper/timer.hxx
+++ b/include/salhelper/timer.hxx
@@ -50,7 +50,7 @@ struct SAL_WARN_UNUSED TTimeValue : public TimeValue
TTimeValue(sal_uInt32 MilliSecs)
{
- Seconds = MilliSecs / 1000L;
+ Seconds = MilliSecs / 1000;
Nanosec = (MilliSecs % 1000) * 1000000L;
normalize();