1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-28 19:19:53 +00:00

Fix warning in janet_gettime()

This commit is contained in:
Ico Doornekamp 2023-05-22 20:53:03 +02:00
parent 57b751b994
commit 50a19bd870

View File

@ -933,7 +933,7 @@ int janet_gettime(struct timespec *spec, enum JanetTimeSource source) {
} }
#else #else
int janet_gettime(struct timespec *spec, enum JanetTimeSource source) { int janet_gettime(struct timespec *spec, enum JanetTimeSource source) {
clockid_t cid = JANET_TIME_REALTIME; clockid_t cid = CLOCK_REALTIME;
if (source == JANET_TIME_REALTIME) { if (source == JANET_TIME_REALTIME) {
cid = CLOCK_REALTIME; cid = CLOCK_REALTIME;
} else if (source == JANET_TIME_MONOTONIC) { } else if (source == JANET_TIME_MONOTONIC) {