diff options
Diffstat (limited to 'rts/posix/GetTime.c')
-rw-r--r-- | rts/posix/GetTime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/GetTime.c b/rts/posix/GetTime.c index ab0d15e129..130d3f1ca9 100644 --- a/rts/posix/GetTime.c +++ b/rts/posix/GetTime.c @@ -140,7 +140,7 @@ Time getProcessElapsedTime(void) void getProcessTimes(Time *user, Time *elapsed) { - static nat ClockFreq = 0; + static uint32_t ClockFreq = 0; if (ClockFreq == 0) { #if defined(HAVE_SYSCONF) |