mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix a compiler warning in _PyUnicode_CheckConsistency()
This commit is contained in:
parent
42bf77537e
commit
5bbe5e7c85
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ _PyUnicode_CheckConsistency(PyObject *op, int check_content)
|
|||
else
|
||||
printf("U+%04x", ch);
|
||||
}
|
||||
printf("} (len=%u)\n", ascii->length);
|
||||
printf("} (len=%lu)\n", ascii->length);
|
||||
abort();
|
||||
}
|
||||
if (kind == PyUnicode_1BYTE_KIND) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue