diff options
-rw-r--r-- | mjit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ typedef intptr_t pid_t; #endif /* Atomically set function pointer if possible. */ -#define MJIT_ATOMIC_SET(var, val) ATOMIC_PTR_EXCHANGE(var, val) +#define MJIT_ATOMIC_SET(var, val) (void)ATOMIC_PTR_EXCHANGE(var, val) /* A copy of MJIT portion of MRI options since MJIT initialization. We need them as MJIT threads still can work when the most MRI data were |