ppython: fix compile error on clang 4

This commit is contained in:
rdb 2017-10-07 12:24:28 +02:00
parent 163c923c82
commit 0493b07f45

View File

@ -98,7 +98,7 @@ int main(int argc, char *argv[]) {
int sts = 0;
PyObject* m = PyImport_ImportModule(IMPORT_MODULE_STR);
if (m <= 0) {
if (m == 0) {
PyErr_Print();
sts = 1;
}