Skip to content

Commit 84a0657

Browse files
committed
Squash compiler wng about signed/unsigned mismatch.
1 parent 8f4d331 commit 84a0657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/frozen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static unsigned char M___hello__[] = {
2121
0,0,0,0,
2222
};
2323

24-
#define SIZE sizeof(M___hello__)
24+
#define SIZE (int)sizeof(M___hello__)
2525

2626
static struct _frozen _PyImport_FrozenModules[] = {
2727
/* Test module */

0 commit comments

Comments
 (0)