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 0afd99e commit 47fef02Copy full SHA for 47fef02
Python/pystate.c
@@ -466,7 +466,7 @@ alloc_interpreter(void)
466
if (mem == NULL) {
467
return NULL;
468
}
469
- void *ptr = _Py_ALIGN_UP((char *)mem + sizeof(void*), alignment);
+ void *ptr = _Py_ALIGN_UP((char *)mem + sizeof(void *), alignment);
470
((void **)ptr)[-1] = mem;
471
assert(_Py_IS_ALIGNED(ptr, alignment));
472
return ptr;
0 commit comments