summaryrefslogtreecommitdiffstats
path: root/src/port.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-18 11:55:45 +0200
committerDavid Robillard <d@drobilla.net>2020-07-18 11:56:30 +0200
commitdced6ada2b53c601ed6a90849cd54a78b6485980 (patch)
tree8e637bbde754adfcc767e6571db250e64566d005 /src/port.c
parentcd07449e306366fe8cc881b469d9a97b17c0c22e (diff)
downloadganv-dced6ada2b53c601ed6a90849cd54a78b6485980.tar.gz
ganv-dced6ada2b53c601ed6a90849cd54a78b6485980.tar.bz2
ganv-dced6ada2b53c601ed6a90849cd54a78b6485980.zip
Remove spurious semicolons
Diffstat (limited to 'src/port.c')
-rw-r--r--src/port.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/port.c b/src/port.c
index fa76f22..eca3e83 100644
--- a/src/port.c
+++ b/src/port.c
@@ -96,8 +96,8 @@ ganv_port_set_property(GObject* object,
GanvPort* port = GANV_PORT(object);
switch (prop_id) {
- SET_CASE(IS_INPUT, boolean, port->impl->is_input);
- SET_CASE(IS_CONTROLLABLE, boolean, port->impl->is_controllable);
+ SET_CASE(IS_INPUT, boolean, port->impl->is_input)
+ SET_CASE(IS_CONTROLLABLE, boolean, port->impl->is_controllable)
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
@@ -116,8 +116,8 @@ ganv_port_get_property(GObject* object,
GanvPort* port = GANV_PORT(object);
switch (prop_id) {
- GET_CASE(IS_INPUT, boolean, port->impl->is_input);
- GET_CASE(IS_CONTROLLABLE, boolean, port->impl->is_controllable);
+ GET_CASE(IS_INPUT, boolean, port->impl->is_input)
+ GET_CASE(IS_CONTROLLABLE, boolean, port->impl->is_controllable)
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;