diff options
| author | 2024-01-15 23:18:10 -0500 | |
|---|---|---|
| committer | 2024-01-15 23:18:10 -0500 | |
| commit | e2fb1d3a5f8b810eaefbff469cfcb3eddad7cbf3 (patch) | |
| tree | 0dafe88c8832da97d8c305fb98d23f397cfa7f54 /src/util/thread | |
| parent | 4e9c4b8ec81e612b03477fcc68def4b8878cf3ac (diff) | |
| download | libnaunet-e2fb1d3a5f8b810eaefbff469cfcb3eddad7cbf3.tar.gz libnaunet-e2fb1d3a5f8b810eaefbff469cfcb3eddad7cbf3.tar.bz2 libnaunet-e2fb1d3a5f8b810eaefbff469cfcb3eddad7cbf3.zip | |
Continue windows build fix
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/util/thread')
| -rw-r--r-- | src/util/thread/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/thread/thread.h b/src/util/thread/thread.h index eb63b8d..8860d2d 100644 --- a/src/util/thread/thread.h +++ b/src/util/thread/thread.h @@ -35,7 +35,7 @@ struct aki_cond { typedef f64 aki_os_tstamp; -#define AKI_TS_FROM_USEC(usec) (usec * 1e-6) +#define AKI_TS_FROM_USEC(usec) ((usec) * 1e-6) #ifndef _WIN32 #define AKI_THREADCALL |