Use 'L' format for unsigned long long to be consistent
This commit is contained in:
parent
cc8b16b9ca
commit
9dadd9f1df
1 changed files with 1 additions and 1 deletions
|
|
@ -1350,7 +1350,7 @@ _wLLVMAddGlobalMapping(PyObject *self, PyObject *args)
|
|||
PyObject *obj_val;
|
||||
unsigned long long address;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "OOK", &obj_ee, &obj_val, &address))
|
||||
if (!PyArg_ParseTuple(args, "OOL", &obj_ee, &obj_val, &address))
|
||||
return NULL;
|
||||
|
||||
const LLVMExecutionEngineRef ee = pycap_get<LLVMExecutionEngineRef>( obj_ee );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue