From: Tim Peters <tim.peters@gmail.com> Date: Thu, 18 Oct 2001 18:57:31 +0000 (+0000) Subject: Squash compiler wng about signed/unsigned mismatch. X-Git-Tag: v2.2.1c1~1186 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84a0657ee900001063e173396431026f58b6402d;p=python Squash compiler wng about signed/unsigned mismatch. --- diff --git a/Python/frozen.c b/Python/frozen.c index e40d5d94c9..3b0c372bca 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 */