Skip to content

Commit 7cf24cb

Browse files
committed
minor i64 parsing fixes
1 parent a25763b commit 7cf24cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/library.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3881,7 +3881,7 @@ LibraryManager.library = {
38813881
}
38823882
if (!ok) {
38833883
___setErrNo(ERRNO_CODES.EINVAL);
3884-
return 0;
3884+
return [0, 0];
38853885
}
38863886

38873887
try {
@@ -3895,7 +3895,7 @@ LibraryManager.library = {
38953895
{{{ makeSetValue('endptr', 0, 'str', '*') }}}
38963896
}
38973897

3898-
ret = i64Math.result.slice(0);
3898+
var ret = i64Math.result.slice(0);
38993899

39003900
return ret;
39013901
},

0 commit comments

Comments
 (0)