Skip to content
Snippets Groups Projects
Commit 74f1fa94 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

muxcollectpads.c: fix broken case in get_property()

- found by new implicit fall-through warning in gcc 7
parent 1f2bead4
No related branches found
No related tags found
No related merge requests found
......@@ -889,6 +889,7 @@ static void get_property(GObject *object, guint id, GValue *value, GParamSpec *p
case ARG_CLIP_TO_SEGMENTS:
g_value_set_boolean(value, collectpads->clip_to_segments);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, id, pspec);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment