From 5992a759f7d9845703af7a7463af66f7e5ec3d8a Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 23 Mar 2019 18:44:00 +0100 Subject: [PATCH] return 0.. --- src/modules/m_sinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/m_sinfo.c b/src/modules/m_sinfo.c index e4339f48b..2bb0d169b 100644 --- a/src/modules/m_sinfo.c +++ b/src/modules/m_sinfo.c @@ -100,6 +100,8 @@ int sinfo_server(aClient *cptr, aClient *sptr, int parc, char *parv[]) /* Broadcast to 'the other side' of the net */ concat_params(buf, sizeof(buf), parc, parv); sendto_server(cptr, 0, 0, ":%s SINFO %s", sptr->name, buf); + + return 0; } #define SafeDisplayStr(x) ((x && *(x)) ? (x) : "-")