diff options
author | Guido van Rossum <guido@python.org> | 1995-02-19 15:50:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-19 15:50:35 (GMT) |
commit | d1ef5962d2ae41afa4f41af79380826701583952 (patch) | |
tree | 33424c3a11a4605a5462418e6ab282ad5f6c5444 /Mac/Modules | |
parent | e71d853fc9d933f9923c5ce1e98c6c8afc0ea36a (diff) | |
download | cpython-d1ef5962d2ae41afa4f41af79380826701583952.zip cpython-d1ef5962d2ae41afa4f41af79380826701583952.tar.gz cpython-d1ef5962d2ae41afa4f41af79380826701583952.tar.bz2 |
explicitly init flags in methodlist
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/macmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index fc72615..9d757bc 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -479,7 +479,7 @@ static struct methodlist mac_methods[] = { #endif {"getbootvol", mac_getbootvol}, /* non-standard */ {"getcwd", mac_getcwd}, - {"listdir", mac_listdir}, + {"listdir", mac_listdir, 0}, #ifndef CW4 {"lseek", mac_lseek}, #endif |