Skip to content

Commit b703c18

Browse files
committed
fixed 20tab#42
1 parent f0aa8cf commit b703c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/UnrealEnginePython/Private/UEPyModule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@ UFunction *unreal_engine_add_function(UClass *u_class, char *name, PyObject *py_
16001600
if (!inspect) {
16011601
return NULL;
16021602
}
1603-
PyObject *signature = PyObject_CallMethod(inspect, "signature", "O", py_callable);
1603+
PyObject *signature = PyObject_CallMethod(inspect, (char *)"signature", (char *)"O", py_callable);
16041604
if (!signature) {
16051605
return NULL;
16061606
}

0 commit comments

Comments
 (0)