From a502864f63e0c43a44c500e7076753b6e1fa21ff Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 6 Jun 2016 08:14:05 -0400 Subject: add missing break statement in case/switch --- pulse.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/pulse.cc b/pulse.cc index 919a5a5..fc450ae 100644 --- a/pulse.cc +++ b/pulse.cc @@ -542,6 +542,7 @@ void PulseClient::remove_device(Device& device) { switch (device.type_) { case DEVTYPE_SINK: devlist = &sinks_; + break; case DEVTYPE_SINK_INPUT: devlist = &sink_inputs_; break; -- cgit v1.2.3