mirror of https://github.com/python/cpython.git
Silence warning on Windows.
This commit is contained in:
parent
e988e286b2
commit
94cc00ce4d
|
@ -260,7 +260,7 @@ change_decimal_from_locale_to_dot(char* buffer)
|
||||||
Py_LOCAL_INLINE(void)
|
Py_LOCAL_INLINE(void)
|
||||||
ensure_sign(char* buffer, size_t buf_size)
|
ensure_sign(char* buffer, size_t buf_size)
|
||||||
{
|
{
|
||||||
Py_ssize_t len;
|
size_t len;
|
||||||
|
|
||||||
if (buffer[0] == '-')
|
if (buffer[0] == '-')
|
||||||
/* Already have a sign. */
|
/* Already have a sign. */
|
||||||
|
|
Loading…
Reference in New Issue