compiler error fix

This commit is contained in:
nakst 2022-01-20 10:46:04 +00:00
parent b3d2028aa4
commit 2e6fa61f9d
1 changed files with 2 additions and 1 deletions

View File

@ -430,7 +430,8 @@ void Build(int optimise, bool compile) {
(double) (endTime.tv_sec - startTime.tv_sec) + (double) (endTime.tv_nsec - startTime.tv_nsec) / 1000000000);
}
void *TimeoutThread(void *) {
void *TimeoutThread(void *_unused) {
(void) _unused;
emulatorDidTimeout = false;
struct timespec endTime;