Skip to content

Commit e5229ce

Browse files
committed
Fix typo
1 parent 09fbac5 commit e5229ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_code.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ read_obj(uint16_t *p)
524524
uintptr_t val;
525525
#if SIZEOF_UINTPTR_T == 8
526526
val = read_u64(p);
527-
#elif SIZE_OF_UINTPTR_T == 4
527+
#elif SIZEOF_UINTPTR_T == 4
528528
val = read_u32(p);
529529
#else
530530
#error "sizeof(uintptr_t) must be 4 or 8"

0 commit comments

Comments
 (0)