]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove unused vars
authorGuido van Rossum <guido@python.org>
Mon, 13 Feb 1995 16:18:02 +0000 (16:18 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 13 Feb 1995 16:18:02 +0000 (16:18 +0000)
Mac/Unsupported/mactcp/macdnrmodule.c

index ebf3f6bf88350c223100349629578d33e0a2aaaa..114ee3c5ec513606627e02d5239d95afaf24bb3f 100644 (file)
@@ -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);