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 63998a1 commit b5e6091Copy full SHA for b5e6091
Include/internal/pycore_backoff.h
@@ -44,7 +44,7 @@ make_backoff_counter(uint16_t value, uint16_t backoff)
44
{
45
assert(backoff <= 15);
46
assert(value <= 0xFFF);
47
- return (_Py_BackoffCounter){.value = value, .backoff = backoff};
+ return (_Py_BackoffCounter){.backoff = backoff, .value = value};
48
}
49
50
static inline _Py_BackoffCounter
0 commit comments