mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-24 02:51:59 +00:00
Fix syntax error in _clock_gettime POSIX fallback (#1204)
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows-opengl (push) Waiting to run
Build coop / build-windows-directx (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
Some checks are pending
Build coop / build-linux (push) Waiting to run
Build coop / build-steamos (push) Waiting to run
Build coop / build-windows-opengl (push) Waiting to run
Build coop / build-windows-directx (push) Waiting to run
Build coop / build-macos-arm (push) Waiting to run
Build coop / build-macos-intel (push) Waiting to run
Remove stray `)` after the fallback clock_gettime() call in the _POSIX_MONOTONIC_CLOCK == 0 branch.
This commit is contained in:
parent
b05b929fa4
commit
a6b24865fa
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ static void _clock_gettime(struct timespec* clock_time) {
|
|||
clock_gettime(CLOCK_MONOTONIC, clock_time);
|
||||
#else
|
||||
if (clock_gettime(CLOCK_MONOTONIC, clock_time))
|
||||
clock_gettime(CLOCK_REALTIME, clock_time));
|
||||
clock_gettime(CLOCK_REALTIME, clock_time);
|
||||
#endif
|
||||
|
||||
#ifdef DEVELOPMENT
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue