Fix typo in gettime implementation on darwin

This commit is contained in:
Benny Baumann 2021-09-18 14:14:23 +02:00
parent c096712b8d
commit 5000cefc13
1 changed files with 2 additions and 1 deletions

View File

@ -432,7 +432,8 @@ void Platform_gettime_monotonic(uint64_t* msec) {
#else
Generic_gettime_monotomic(msec);
Generic_gettime_monotonic(msec);
#endif
}