Skip to content

Commit aa8c9cb

Browse files
Be explicit about .used in the initializer.
1 parent 54784f5 commit aa8c9cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Include/internal/pycore_obmalloc_init.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ extern "C" {
5151

5252
#define _obmalloc_state_INIT(obmalloc) \
5353
{ \
54-
.pools = {_obmalloc_pools_INIT(obmalloc.pools)}, \
54+
.pools = { \
55+
.used = _obmalloc_pools_INIT(obmalloc.pools), \
56+
}, \
5557
}
5658

5759

0 commit comments

Comments
 (0)