commit 4ca07c38df734a99ea5162bafd04b871add59be2 parent 7af78b4eb5851e659a672356796624ea09b64408 Author: Drew DeVault <sir@cmpwn.com> Date: Fri, 1 Jan 2021 14:32:18 -0500 rt: wrap compile exit status in wexitstatus Forgot this Diffstat:
M | rt/compile.ha | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rt/compile.ha b/rt/compile.ha @@ -32,5 +32,5 @@ export fn compile(src: str) int = { wait4(child, &status, 0, null: *void); }; - return status; + return wexitstatus(status); };