Commit 2d0a4fab authored by Stefan Behnel's avatar Stefan Behnel

Avoid a C compiler warning in clang for a constant strchr() call.

parent 1587111f
...@@ -46,7 +46,8 @@ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { ...@@ -46,7 +46,8 @@ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
{ {
#if PY_MAJOR_VERSION >= 3 #if PY_MAJOR_VERSION >= 3
if (level == -1) { if (level == -1) {
if (strchr(__Pyx_MODULE_NAME, '.')) { // Avoid C compiler warning if strchr() evaluates to false at compile time.
if ((1) && (strchr(__Pyx_MODULE_NAME, '.'))) {
/* try package relative import first */ /* try package relative import first */
module = PyImport_ImportModuleLevelObject( module = PyImport_ImportModuleLevelObject(
name, global_dict, empty_dict, list, 1); name, global_dict, empty_dict, list, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment