1
0
Fork 0

Fix a typo for Windows.

This commit is contained in:
Max Neunhoeffer 2014-03-04 13:13:10 +01:00
parent 2044fc9c40
commit 63bcda3c78
1 changed files with 1 additions and 1 deletions

View File

@ -1036,7 +1036,7 @@ bool TRI_KillExternalProcess (TRI_external_id_t pid) {
// Kill just in case:
return (0 != kill(pid._pid, SIGTERM));
#else
return OurKillProcessPID(pid._pid);
return ourKillProcessPID(pid._pid);
#endif
}