aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-10-14 11:39:19 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-10-14 11:39:19 -0700
commitc672824a579495ec500f3cdb0ea99cb2d52be59e (patch)
treeefdcec8f67d632ea1de66b1530411694b4ea0bba /src/jsifier.js
parent74e47602a9c28ff5b65f44889be76bf70c045937 (diff)
use proper separator in va_argHandler; fixes #1705
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index f638ea08..e84de3ee 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -1375,7 +1375,7 @@ function JSify(data, functionsOnly, givenFunctions) {
// store current list offset in tempInt, advance list offset by STACK_ALIGN, return list entry stored at tempInt
return '(tempInt=' + makeGetValue(ident, Runtime.QUANTUM_SIZE, '*') + ',' +
- makeSetValue(ident, Runtime.QUANTUM_SIZE, 'tempInt + ' + move, '*') + ',' +
+ makeSetValue(ident, Runtime.QUANTUM_SIZE, 'tempInt + ' + move, '*', null, null, null, null, ',') + ',' +
makeGetValue(makeGetValue(ident, 0, '*'), 'tempInt', item.type) + ')';
}