From 84a0657ee900001063e173396431026f58b6402d Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Thu, 18 Oct 2001 18:57:31 +0000 Subject: [PATCH] Squash compiler wng about signed/unsigned mismatch. --- Python/frozen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/frozen.c b/Python/frozen.c index e40d5d94c9f..3b0c372bca2 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 */