Use 'L' format for unsigned long long to be consistent

This commit is contained in:
Siu Kwan Lam 2013-01-10 09:44:00 -06:00
commit 9dadd9f1df

View file

@ -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 );