summaryrefslogtreecommitdiff
path: root/Python/frozen.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-10-18 18:57:31 +0000
committerTim Peters <tim.peters@gmail.com>2001-10-18 18:57:31 +0000
commit84a0657ee900001063e173396431026f58b6402d (patch)
treea4eb598b5014b5134231ee478a5fd9ac9a84cbe4 /Python/frozen.c
parent8f4d3316deac9ba3222370c6fb7dfa851a0b39a5 (diff)
downloadcpython-git-84a0657ee900001063e173396431026f58b6402d.tar.gz
Squash compiler wng about signed/unsigned mismatch.
Diffstat (limited to 'Python/frozen.c')
-rw-r--r--Python/frozen.c2
1 files changed, 1 insertions, 1 deletions
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 */