Skip to content

Commit

Permalink
remove incorrect param in abort
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Apr 4, 2012
1 parent e2bdb34 commit 4a32c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4a32c17

Please sign in to comment.