diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2014-11-30 13:55:45 +0000 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2014-11-30 13:55:45 +0000 |
commit | b6e898b7518777b41d9d82dd3e861a64016cbe0a (patch) | |
tree | 05b660eeb4fbeb1427b5bb061aa8cd5ca6ad9520 /src | |
parent | a06e9a8aa7b1612e43ce7ec0868276876278c9a9 (diff) | |
download | libnsutils-b6e898b7518777b41d9d82dd3e861a64016cbe0a.tar.gz libnsutils-b6e898b7518777b41d9d82dd3e861a64016cbe0a.tar.bz2 |
tabs->spaces
Diffstat (limited to 'src')
-rw-r--r-- | src/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -63,7 +63,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out) #elif defined(__amiga) struct EClockVal eclockval; int freq = 0; - uint64 eclock; + uint64 eclock; /* NB: The calling task must already have opened timer.device * and obtained the interface. @@ -74,7 +74,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out) #endif freq = ReadEClock(&eclockval) / 1000; - eclock = ((uint64)eclockval.ev_hi << 32) | (eclockval.ev_lo); + eclock = ((uint64)eclockval.ev_hi << 32) | (eclockval.ev_lo); current = eclock / freq; #else #warning "Using dodgy gettimeofday() fallback" |