summaryrefslogtreecommitdiffhomepage
path: root/src/sst.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-09-13 23:31:35 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-09-13 23:31:35 +0100
commit090772553e2b16962462e45e8871bfc076f23b15 (patch)
treedbe8873a38a61156f3b3a90d7c7132f608d1b70c /src/sst.c
parent792463cb133f65645feb48743bbc03ef8eb96bdd (diff)
Fix some lingering idiocy
Thanks Aciidz for pointing out the strings with no newline in them, and thanks Clang for warning me I wasn't using a function for ages while I was too lazy to delete it.
Diffstat (limited to 'src/sst.c')
-rw-r--r--src/sst.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sst.c b/src/sst.c
index af15c66..a7eb331 100644
--- a/src/sst.c
+++ b/src/sst.c
@@ -159,7 +159,6 @@ IMPORT void *KeyValuesSystem(void);
// most plugin callbacks are unused - define dummy functions for each signature
static void VCALLCONV nop_v_v(void *this) {}
-static void VCALLCONV nop_b_v(void *this, bool b) {}
static void VCALLCONV nop_p_v(void *this, void *p) {}
static void VCALLCONV nop_pp_v(void *this, void *p1, void *p2) {}
static void VCALLCONV nop_pii_v(void *this, void *p, int i1, int i2) {}