mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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
|
else
|
||||||
printf("U+%04x", ch);
|
printf("U+%04x", ch);
|
||||||
}
|
}
|
||||||
printf("} (len=%u)\n", ascii->length);
|
printf("} (len=%lu)\n", ascii->length);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
if (kind == PyUnicode_1BYTE_KIND) {
|
if (kind == PyUnicode_1BYTE_KIND) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue