diff options
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index d8ed589e..23d9274a 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -784,7 +784,7 @@ function JSify(data, functionsOnly, givenFunctions, givenGlobalVariables) { case VAR_NATIVIZED: { return value; // We have the actual value here } - case VAR_EMULATED: return makeGetValue(value, null, item.type, 0, item.unsigned); + case VAR_EMULATED: return makeGetValue(value, 0, item.type, 0, item.unsigned); default: throw "unknown [load] impl: " + impl; } }); |