From: Guido van Rossum Date: Mon, 13 Feb 1995 16:18:02 +0000 (+0000) Subject: remove unused vars X-Git-Tag: v1.2b3~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9f29bf4ca44d85799f907e27974afdb49010c6a;p=thirdparty%2FPython%2Fcpython.git remove unused vars --- diff --git a/Mac/Unsupported/mactcp/macdnrmodule.c b/Mac/Unsupported/mactcp/macdnrmodule.c index ebf3f6bf8835..114ee3c5ec51 100644 --- a/Mac/Unsupported/mactcp/macdnrmodule.c +++ b/Mac/Unsupported/mactcp/macdnrmodule.c @@ -342,7 +342,6 @@ dnr_AddrToStr(self, args) OSErr err; unsigned long ipaddr; char ipname[16]; - object *rv; if (!newgetargs(args, "l", &ipaddr)) return NULL; @@ -436,7 +435,7 @@ static struct methodlist dnr_methods[] = { void initmacdnr() { - object *m, *d, *o; + object *m, *d; /* Create the module and add the functions */ m = initmodule("macdnr", dnr_methods);