aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-03 20:32:09 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-03 20:32:09 -0700
commit4a32c17be76a395f23dbaa8a26fb63ecc93651a1 (patch)
tree348bab963a8b014bb5fc5688e887eeaaa23baf7a /src
parente2bdb34948cf09c85de75d4f283c0dbe02227f9b (diff)
remove incorrect param in abort
Diffstat (limited to 'src')
-rw-r--r--src/library.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library.js b/src/library.js
index 6c96bcca..cc28ce6f 100644
--- a/src/library.js
+++ b/src/library.js
@@ -3365,9 +3365,9 @@ LibraryManager.library = {
},
__cxa_atexit: 'atexit',
- abort: function(code) {
+ abort: function() {
ABORT = true;
- throw 'ABORT: ' + code + ', at ' + (new Error().stack);
+ throw 'abort() at ' + (new Error().stack);
},
bsearch: function(key, base, num, size, compar) {