Skip to content

Commit 47fef02

Browse files
Update Python/pystate.c
Co-authored-by: Kumar Aditya <[email protected]>
1 parent 0afd99e commit 47fef02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/pystate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ alloc_interpreter(void)
466466
if (mem == NULL) {
467467
return NULL;
468468
}
469-
void *ptr = _Py_ALIGN_UP((char *)mem + sizeof(void*), alignment);
469+
void *ptr = _Py_ALIGN_UP((char *)mem + sizeof(void *), alignment);
470470
((void **)ptr)[-1] = mem;
471471
assert(_Py_IS_ALIGNED(ptr, alignment));
472472
return ptr;

0 commit comments

Comments
 (0)