summaryrefslogtreecommitdiffstats
path: root/Mac/Unsupported/mactcp
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-13 16:18:02 (GMT)
committerGuido van Rossum <guido@python.org>1995-02-13 16:18:02 (GMT)
commite9f29bf4ca44d85799f907e27974afdb49010c6a (patch)
tree9bc885a1d041343c95fc4d7b64de7acbe17e68b7 /Mac/Unsupported/mactcp
parentcc9bc8f824826a1b8a9326607a8cf34b10255d33 (diff)
downloadcpython-e9f29bf4ca44d85799f907e27974afdb49010c6a.zip
cpython-e9f29bf4ca44d85799f907e27974afdb49010c6a.tar.gz
cpython-e9f29bf4ca44d85799f907e27974afdb49010c6a.tar.bz2
remove unused vars
Diffstat (limited to 'Mac/Unsupported/mactcp')
-rw-r--r--Mac/Unsupported/mactcp/macdnrmodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Mac/Unsupported/mactcp/macdnrmodule.c b/Mac/Unsupported/mactcp/macdnrmodule.c
index ebf3f6b..114ee3c 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);