Fix stray paren

This commit is contained in:
Arseny Kapoulkine 2022-08-02 07:48:02 -07:00
parent ad508f558e
commit bcd0d8eb96

View file

@ -63,7 +63,7 @@ static lua_State* replState = NULL;
#ifdef _WIN32
BOOL WINAPI sigintHandler(DWORD signal)
{
if (signal == CTRL_C_EVENT && replState
if (signal == CTRL_C_EVENT && replState)
lua_callbacks(replState)->interrupt = &sigintCallback;
return TRUE;
}