Skip to content

Commit 5f5c383

Browse files
committed
Fix: invalid usage of bound InteropLibrary
1 parent 37b6a33 commit 5f5c383

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi/CApiContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ public Object initCApiModule(Node location, Object llvmLibrary, String initFuncN
954954
// However, CPython gracefully ignores that. So, we pass just NULL pointers.
955955
Object[] arguments = new Object[e.getExpectedMinArity()];
956956
Arrays.fill(arguments, PNone.NO_VALUE);
957-
nativeResult = llvmInteropLib.execute(pyinitFunc, arguments);
957+
nativeResult = pyInitFuncLib.execute(pyinitFunc, arguments);
958958
}
959959

960960
checkFunctionResultNode.execute(context, initFuncName, nativeResult);

0 commit comments

Comments
 (0)