Mended LinkSetMaster signature mismatch

Signature mismatches when you try and compile on non-Linux machines. Instead of ErrNotImplemented, you get a message about wrongly using *Bridge.
This commit is contained in:
David Gee 2017-03-21 18:04:01 +00:00 committed by Vish Ishaya
parent 6c782366d2
commit d71ebad8a5

View File

@ -16,7 +16,7 @@ func LinkSetMTU(link Link, mtu int) error {
return ErrNotImplemented
}
func LinkSetMaster(link Link, master *Link) error {
func LinkSetMaster(link Link, master *Bridge) error {
return ErrNotImplemented
}