mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 16:31:18 +01:00
Function declared void shouldn't return any value...
This commit is contained in:
parent
fe4f5b97e0
commit
3c0df64f68
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93287
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user