mirror of https://github.com/python/cpython
Silence a warning.
This commit is contained in:
parent
28b2686260
commit
162997efb1
|
@ -223,7 +223,7 @@ unpack_double(const char *p, /* start of 8-byte string */
|
||||||
|
|
||||||
/* Helper to format the range error exceptions */
|
/* Helper to format the range error exceptions */
|
||||||
static int
|
static int
|
||||||
_range_error(formatdef *f, int is_unsigned)
|
_range_error(const formatdef *f, int is_unsigned)
|
||||||
{
|
{
|
||||||
if (is_unsigned == 0) {
|
if (is_unsigned == 0) {
|
||||||
long smallest = 0, largest = 0;
|
long smallest = 0, largest = 0;
|
||||||
|
|
Loading…
Reference in New Issue