Function declared void shouldn't return any value...

This commit is contained in:
Andrzej Bialecki 2002-03-27 20:10:53 +00:00
parent fe4f5b97e0
commit 3c0df64f68

View File

@ -379,7 +379,7 @@ print_routing(char *proto)
free(if_buf);
free(if_table);
free(ifm_table);
return (0);
return;
}
/* Now dump the routing table */
@ -435,7 +435,7 @@ print_routing(char *proto)
free(if_buf);
free(if_table);
free(ifm_table);
return (0);
return;
}