aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
authormax99x <max99x@gmail.com>2011-08-28 19:18:47 +0300
committermax99x <max99x@gmail.com>2011-08-28 19:18:47 +0300
commit8d2a080af4b8e83f27b8ccb32a2ed945b80a6c68 (patch)
treec112d154f2f7f1ca7dc9fffb06798098fdf84283 /src/library.js
parenta25b0e9ac1950252c310d0f220b82e28c84f8e6c (diff)
Minor Closure Compiler compatibility fixes.
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js
index 7b52fdef..067e0f62 100644
--- a/src/library.js
+++ b/src/library.js
@@ -4415,7 +4415,7 @@ LibraryManager.library = {
return 0;
} else {
if (DLFCN_DATA.error) _free(DLFCN_DATA.error);
- var msgArr = Module.intArrayFromString(DLFCN_DATA.errorMsg);
+ var msgArr = intArrayFromString(DLFCN_DATA.errorMsg);
DLFCN_DATA.error = allocate(msgArr, 'i8', ALLOC_NORMAL);
DLFCN_DATA.errorMsg = null;
return DLFCN_DATA.error;