aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-10-21 10:29:48 -0400
committerDavid Robillard <d@drobilla.net>2023-10-21 10:29:48 -0400
commit8661f96f408dff3b27fc611a39e13ebebd04f0f2 (patch)
tree69ca3b5fef147807ec6d3a0918722e74f947e57f
parent6c2a219c3e4fd28b839449be46c285ea8fc68133 (diff)
downloadpugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.tar.gz
pugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.tar.bz2
pugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.zip
Remove spurious semicolon
-rw-r--r--src/internal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal.c b/src/internal.c
index b3ee86a..ca710ce 100644
--- a/src/internal.c
+++ b/src/internal.c
@@ -134,7 +134,7 @@ puglFilterMods(const PuglMods state, const PuglKey key)
return state & ~(PuglMods)PUGL_MOD_SUPER;
default:
break;
- };
+ }
return state;
}