Skip to content

Commit b4d54a3

Browse files
authored
gh-99706: unicodeobject: Fix padding in PyASCIIObject.state (GH-99707)
1 parent c24397a commit b4d54a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/cpython/unicodeobject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ typedef struct {
135135
unsigned int ascii:1;
136136
/* Padding to ensure that PyUnicode_DATA() is always aligned to
137137
4 bytes (see issue #19537 on m68k). */
138-
unsigned int :25;
138+
unsigned int :26;
139139
} state;
140140
} PyASCIIObject;
141141

0 commit comments

Comments
 (0)