Fix the RouteList() prototype on non-linux platforms

The RouteList() function prototype had become out of sync with its
Linux counterpart.  This patch updates it.
This commit is contained in:
Ethan J. Jackson 2017-01-05 14:04:17 -08:00 committed by Vish Ishaya
parent 1890b34fa3
commit 90b9ee5358
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func RouteDel(route *Route) error {
return ErrNotImplemented
}
func RouteList(link *Link, family int) ([]Route, error) {
func RouteList(link Link, family int) ([]Route, error) {
return nil, ErrNotImplemented
}