remove unused vars

This commit is contained in:
Guido van Rossum 1995-02-13 16:18:02 +00:00
parent cc9bc8f824
commit e9f29bf4ca
1 changed files with 1 additions and 2 deletions

View 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);