From 2ec9f59588cca64fa3e0a50fd748260268bc2d71 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Wed, 1 Jun 2016 19:56:47 +0000 Subject: [PATCH] bandbi: a function that calls exit(3) should be marked noreturn --- ircd/bandbi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ircd/bandbi.c b/ircd/bandbi.c index 15171b646..567f30fd7 100644 --- a/ircd/bandbi.c +++ b/ircd/bandbi.c @@ -46,6 +46,9 @@ #include "msg.h" /* XXX: MAXPARA */ #include "operhash.h" +static void +bandb_handle_failure(rb_helper *helper, char **parv, int parc) __attribute__((noreturn)); + static char bandb_add_letter[LAST_BANDB_TYPE] = { 'K', 'D', 'X', 'R' };