diff options
-rw-r--r-- | Python/frozen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index e40d5d9..3b0c372 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -21,7 +21,7 @@ static unsigned char M___hello__[] = { 0,0,0,0, }; -#define SIZE sizeof(M___hello__) +#define SIZE (int)sizeof(M___hello__) static struct _frozen _PyImport_FrozenModules[] = { /* Test module */ |