diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-09-25 01:33:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 01:33:15 +0200 |
commit | 4e2b59f9df5085025f08faea24e76b009e47f68d (patch) | |
tree | 61ff790ebfa172bb1635728e37636540859a1db1 /runtime/js | |
parent | 683a38e47c47609d28bc6964f4b082885e477bf3 (diff) |
cleanup(runtime): flatten op_kill's args (#12214)
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_process.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |