diff options
-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 a0c6ec72..d20812ae 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -627,7 +627,7 @@ function JSify(data, functionsOnly, givenFunctions, givenGlobalVariables) { } ret += 'return'; if (item.value) { - ret += ' ' + finalizeLLVMParameter(item.value); + ret += ' ' + indexizeFunctions(finalizeLLVMParameter(item.value)); } return ret + ';'; }); |