aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_rm.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bridge_rm.go')
-rw-r--r--commands/bridge_rm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go
index 80a831ff..5d38083c 100644
--- a/commands/bridge_rm.go
+++ b/commands/bridge_rm.go
@@ -15,7 +15,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error {
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
- err = bridge.RemoveBridges(backend, args[0])
+ err = bridge.RemoveBridge(backend, args[0])
if err != nil {
return err
}