diff options
Diffstat (limited to 'Python/traceback.c')
| -rw-r--r-- | Python/traceback.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Python/traceback.c b/Python/traceback.c index 2ece192..565094b 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -198,7 +198,7 @@ _Py_FindSourceFile(PyObject *filename, char* namebuf, size_t namelen, PyObject *          }          strcpy(namebuf, PyBytes_AS_STRING(path));          Py_DECREF(path); -        if (strlen(namebuf) != len) +        if (strlen(namebuf) != (size_t)len)              continue; /* v contains '\0' */          if (len > 0 && namebuf[len-1] != SEP)              namebuf[len++] = SEP; | 
