diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library.js b/src/library.js index 6329a67d..c6aa3eaf 100644 --- a/src/library.js +++ b/src/library.js @@ -3178,8 +3178,8 @@ LibraryManager.library = { mmap__deps: ['$FS'], mmap: function(start, num, prot, flags, stream, offset) { // FIXME: Leaky and non-share - if( stream == -1) { - return allocate(num,'i8', ALLOC_NORMAL); + if (stream == -1) { + return allocate(num, 'i8', ALLOC_NORMAL); } var info = FS.streams[stream]; if (!info) return -1; |