remove unused vars
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 @@
OSErr err;
unsigned long ipaddr;
char ipname[16];
- object *rv;
if (!newgetargs(args, "l", &ipaddr))
return NULL;
@@ -436,7 +435,7 @@
void
initmacdnr()
{
- object *m, *d, *o;
+ object *m, *d;
/* Create the module and add the functions */
m = initmodule("macdnr", dnr_methods);