Skip to content

Commit dea3875

Browse files
authored
Fix typo from #19943 (#19949)
1 parent d404057 commit dea3875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library_pthread.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ var LibraryPThread = {
10431043
assert(func.length == numCallArgs, 'Call args mismatch in _emscripten_receive_on_main_thread_js');
10441044
#endif
10451045
PThread.currentProxiedOperationCallerThread = callingThread;
1046-
var rtn = func.apply(null, proxiedFunctionTable);
1046+
var rtn = func.apply(null, proxiedJSCallArgs);
10471047
PThread.currentProxiedOperationCallerThread = 0;
10481048
return rtn;
10491049
},

0 commit comments

Comments
 (0)