diff options
| author | 2024-12-26 15:24:35 -0500 | |
|---|---|---|
| committer | 2024-12-26 15:24:35 -0500 | |
| commit | be4eb3831a2e5b44fb6e4c2d077e3c07edf6b776 (patch) | |
| tree | dc0f0479070cc716fba9e26d4848a9786913c823 /src/util/timer | |
| parent | f5df41d650ea03de846466c66a62d0517b22f375 (diff) | |
| download | libnaunet-be4eb3831a2e5b44fb6e4c2d077e3c07edf6b776.tar.gz libnaunet-be4eb3831a2e5b44fb6e4c2d077e3c07edf6b776.tar.bz2 libnaunet-be4eb3831a2e5b44fb6e4c2d077e3c07edf6b776.zip | |
Revise style and cleanup
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/util/timer')
| -rw-r--r-- | src/util/timer/timer_windows.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/timer/timer_windows.c b/src/util/timer/timer_windows.c index 198cb32..f26e56a 100644 --- a/src/util/timer/timer_windows.c +++ b/src/util/timer/timer_windows.c @@ -16,5 +16,6 @@ u64 nn_get_timestamp(void) { FILETIME ft; GetSystemTimePreciseAsFileTime(&ft); - return (((LARGE_INTEGER){ .LowPart = ft.dwLowDateTime, .HighPart = ft.dwHighDateTime }).QuadPart - UNIX_TIME_START) / 10Lu; + return (((LARGE_INTEGER){ .LowPart = ft.dwLowDateTime, .HighPart = ft.dwHighDateTime }).QuadPart - + UNIX_TIME_START) / 10Lu; } |