From 4e2b59f9df5085025f08faea24e76b009e47f68d Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Sat, 25 Sep 2021 01:33:15 +0200 Subject: cleanup(runtime): flatten op_kill's args (#12214) --- runtime/js/40_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/js') diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js index 782dfe476..26d452a4d 100644 --- a/runtime/js/40_process.js +++ b/runtime/js/40_process.js @@ -15,7 +15,7 @@ } = window.__bootstrap.primordials; function opKill(pid, signo) { - core.opSync("op_kill", { pid, signo }); + core.opSync("op_kill", pid, signo); } function opRunStatus(rid) { -- cgit v1.2.3