Skip to content

Commit

Permalink
gh-99706: unicodeobject: Fix padding in PyASCIIObject.state (GH-99707)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt authored Nov 24, 2022
1 parent c24397a commit b4d54a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/cpython/unicodeobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit b4d54a3

Please sign in to comment.