diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-03 23:53:40 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-03 23:53:40 (GMT) |
commit | fe38d2998fa18c0527e1e3bfca844fdd604fed8b (patch) | |
tree | a513e81d1c1c80747135e287a536ce07a59cf07b /Mac/Python/macimport.c | |
parent | db6382941bf37c2568020194fcb30d2aab3cd065 (diff) | |
download | cpython-fe38d2998fa18c0527e1e3bfca844fdd604fed8b.zip cpython-fe38d2998fa18c0527e1e3bfca844fdd604fed8b.tar.gz cpython-fe38d2998fa18c0527e1e3bfca844fdd604fed8b.tar.bz2 |
PyMac_FindModuleExtension now uses a size_t as its size parameter for compatibility.
Diffstat (limited to 'Mac/Python/macimport.c')
-rw-r--r-- | Mac/Python/macimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Python/macimport.c b/Mac/Python/macimport.c index 2f5d622..1b3b994 100644 --- a/Mac/Python/macimport.c +++ b/Mac/Python/macimport.c @@ -407,7 +407,7 @@ error: ** pathname of the module found (if any). */ struct filedescr * -PyMac_FindModuleExtension(char *buf, int *lenp, char *module) +PyMac_FindModuleExtension(char *buf, size_t *lenp, char *module) { struct filedescr *fdp; unsigned char fnbuf[64]; |