diff options
Diffstat (limited to 'src/port/kill.c')
-rw-r--r-- | src/port/kill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/kill.c b/src/port/kill.c index ceea3f49bf..5a7d483ce6 100644 --- a/src/port/kill.c +++ b/src/port/kill.c @@ -42,7 +42,7 @@ pgkill(int pid, int sig) /* special case for SIGKILL: just ask the system to terminate the target */ if (sig == SIGKILL) { - HANDLE prochandle; + HANDLE prochandle; if ((prochandle = OpenProcess(PROCESS_TERMINATE, FALSE, (DWORD) pid)) == NULL) { |