mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Function declared void shouldn't return any value...
This commit is contained in:
parent
fe4f5b97e0
commit
3c0df64f68
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue