You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/llvmpy/files/llvmpy-0.12.2-return-type.p...

14 lines
421 B

gentoo qa: type conversion on return triggered by gcc warnings
bicatali - feb 2014
--- llvmpy/include/llvm_binding/conversion.h.orig 2014-02-10 08:45:29.516304878 -0800
+++ llvmpy/include/llvm_binding/conversion.h 2014-02-10 08:45:58.190474249 -0800
@@ -101,7 +101,7 @@
val = PyInt_AsLong(intobj);
}
if (PyErr_Occurred()){
- return NULL;
+ return 1;
}
// success
return 1;