diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-18 18:57:31 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-18 18:57:31 +0000 |
commit | 2e6facf729e37d5d16e7eee005bcfe5361d84b7a (patch) | |
tree | 1e817dff98e777d8807f8f374c7d9c3a56cf7d92 /Python/frozen.c | |
parent | 0feaf8f04e05d0a0a7fc0674f3a0816cacfd760a (diff) | |
download | cpython-2e6facf729e37d5d16e7eee005bcfe5361d84b7a.tar.gz |
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 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 */ |