Skip to content

Commit 24407a1

Browse files
committed
Fix argument name use after applying declaration fix.
1 parent 0987619 commit 24407a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/cext/CExtNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ protected Object callWithCExtLockAndFrame(
128128
Object receiver, RubyArray argsArray, Object specialVariables, Object block,
129129
@Cached MarkingServiceNodes.GetMarkerThreadLocalDataNode getDataNode) {
130130
final ExtensionCallStack extensionStack = getDataNode.execute().getExtensionCallStack();
131-
extensionStack.push(variables, block);
131+
extensionStack.push(specialVariables, block);
132132
try {
133133
return callCextNode.execute(receiver, argsArray);
134134
} finally {

0 commit comments

Comments
 (0)