aboutsummaryrefslogtreecommitdiff
path: root/src/postamble.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-03-19 13:21:03 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-03-19 13:25:46 -0700
commitea490e9c7f6f98b0df1de1e6259a86704d8d150d (patch)
tree696a62faf94dda343f0ed32f965412f6171e8716 /src/postamble.js
parent10cfa9fc93ab611fb8c94aed563513fe9c124644 (diff)
refactor use of this[..] in shell.js to use Module[..]
Diffstat (limited to 'src/postamble.js')
-rw-r--r--src/postamble.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postamble.js b/src/postamble.js
index 7371ff05..4a2fbf60 100644
--- a/src/postamble.js
+++ b/src/postamble.js
@@ -59,7 +59,7 @@ addRunDependency();
if (runDependencies == 0) {
var ret = run();
#if CATCH_EXIT_CODE
- print('Exit Status: ' + ret);
+ Module.print('Exit Status: ' + ret);
#endif
}