mirror of https://github.com/python/cpython
gh-99706: unicodeobject: Fix padding in `PyASCIIObject.state` (GH-99707)
This commit is contained in:
parent
c24397a108
commit
b4d54a332e
|
@ -135,7 +135,7 @@ typedef struct {
|
|||
unsigned int ascii:1;
|
||||
/* Padding to ensure that PyUnicode_DATA() is always aligned to
|
||||
4 bytes (see issue #19537 on m68k). */
|
||||
unsigned int :25;
|
||||
unsigned int :26;
|
||||
} state;
|
||||
} PyASCIIObject;
|
||||
|
||||
|
|
Loading…
Reference in New Issue