diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-18 18:57:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-18 18:57:31 (GMT) |
commit | 84a0657ee900001063e173396431026f58b6402d (patch) | |
tree | a4eb598b5014b5134231ee478a5fd9ac9a84cbe4 /Python/frozen.c | |
parent | 8f4d3316deac9ba3222370c6fb7dfa851a0b39a5 (diff) | |
download | cpython-84a0657ee900001063e173396431026f58b6402d.zip cpython-84a0657ee900001063e173396431026f58b6402d.tar.gz cpython-84a0657ee900001063e173396431026f58b6402d.tar.bz2 |
Squash compiler wng about signed/unsigned mismatch.
Diffstat (limited to 'Python/frozen.c')
-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 */ |