We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed04f4a commit c59bef0Copy full SHA for c59bef0
Objects/longobject.c
@@ -351,7 +351,7 @@ _PyLong_Negate(PyLongObject **x_p)
351
t >>= PyLong_SHIFT; \
352
} \
353
/* Construct output value. */ \
354
- v = long_alloc(ndigits); \
+ PyLongObject *v = long_alloc(ndigits); \
355
if (v != NULL) { \
356
digit *p = v->long_value.ob_digit; \
357
_PyLong_SetSignAndDigitCount(v, ival < 0 ? -1 : 1, ndigits); \
0 commit comments