diff options
author | David Robillard <d@drobilla.net> | 2023-10-21 10:29:48 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-10-21 10:29:48 -0400 |
commit | 8661f96f408dff3b27fc611a39e13ebebd04f0f2 (patch) | |
tree | 69ca3b5fef147807ec6d3a0918722e74f947e57f | |
parent | 6c2a219c3e4fd28b839449be46c285ea8fc68133 (diff) | |
download | pugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.tar.gz pugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.tar.bz2 pugl-8661f96f408dff3b27fc611a39e13ebebd04f0f2.zip |
Remove spurious semicolon
-rw-r--r-- | src/internal.c | 2 |
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; } |