From 237081e5735b463b7528f4f3f52978eaf1bfeeca Mon Sep 17 00:00:00 2001 From: fiaxh Date: Tue, 12 Oct 2021 16:27:56 +0200 Subject: Fix compiler warnings ('Switch does not handle .. of enum ..') --- plugins/rtp/src/plugin.vala | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins/rtp/src') diff --git a/plugins/rtp/src/plugin.vala b/plugins/rtp/src/plugin.vala index 19a266b1..d79fc2aa 100644 --- a/plugins/rtp/src/plugin.vala +++ b/plugins/rtp/src/plugin.vala @@ -206,6 +206,8 @@ public class Dino.Plugins.Rtp.Plugin : RootInterface, VideoCallPlugin, Object { old = devices.first_match((it) => it.matches(device)); if (old != null) devices.remove(old); break; + default: + break; } if (device != null) { switch (device.device_class) { -- cgit v1.2.3-54-g00ecf