Skip to content

Commit d3ddc46

Browse files
committed
Revert change of full path to kill function
(Review @joakim-noah)
1 parent d5f4845 commit d3ddc46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/process.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1452,7 +1452,7 @@ void kill(Pid pid, int codeOrSignal)
14521452
else version (Posix)
14531453
{
14541454
import core.sys.posix.signal;
1455-
if (core.sys.posix.signal.kill(pid.osHandle, codeOrSignal) == -1)
1455+
if (kill(pid.osHandle, codeOrSignal) == -1)
14561456
throw ProcessException.newFromErrno();
14571457
}
14581458
}

0 commit comments

Comments
 (0)