mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix stray paren
This commit is contained in:
parent
ad508f558e
commit
bcd0d8eb96
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue