common linux: Fix Wunused-variable warning.

This commit is contained in:
lightningterror 2022-11-19 14:18:58 +01:00
parent 0988b08f7a
commit 5c104f8e1d
1 changed files with 2 additions and 1 deletions

View File

@ -48,9 +48,10 @@ extern void SignalExit(int sig);
static const uptr m_pagemask = getpagesize() - 1;
static struct sigaction s_old_sigsegv_action;
#if defined(__APPLE__)
static struct sigaction s_old_sigbus_action;
#else
static struct sigaction s_old_sigsegv_action;
#endif
// Linux implementation of SIGSEGV handler. Bind it using sigaction().