diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-09 23:25:32 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-09 23:25:32 +0000 |
commit | 83f45401e8e440e8f55095b66ef3558da7b6a623 (patch) | |
tree | 96c5b6cec78052e34e3e6b51ccca188e7c2ca9b3 /Mac/Python | |
parent | fc72d3682590e2f1d4ffa14217a67ae8bd529eac (diff) | |
download | cpython-git-83f45401e8e440e8f55095b66ef3558da7b6a623.tar.gz |
Removed unused variables
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macshlglue.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Mac/Python/macshlglue.c b/Mac/Python/macshlglue.c index df9f7f79c6..0bd035991a 100644 --- a/Mac/Python/macshlglue.c +++ b/Mac/Python/macshlglue.c @@ -59,11 +59,8 @@ __sinit(InitBlockPtr data) void PyMac_AddLibResources() { - OSErr err; - short fd, curfd; - if ( !library_fss_valid ) return; - fd = FSpOpenResFile(&library_fss, fsRdPerm); + (void)FSpOpenResFile(&library_fss, fsRdPerm); } |