aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-18 22:43:42 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-18 22:45:02 +0100
commite5f933a8aa10b76329a1b8845552bc271eb203fe (patch)
tree0a8e0305f555d7f86c241699f80edb1cb6c5ba11
parent35c604d37505f8a93e7e9207d40dadaf12e8b59a (diff)
Fixed bogus style fragment
-rw-r--r--FICS/lists.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/lists.c b/FICS/lists.c
index 02c58ea..e73420b 100644
--- a/FICS/lists.c
+++ b/FICS/lists.c
@@ -305,7 +305,7 @@ list_addsub(int p, char *list, char *who, int addsub)
if (addsub == 1) { // add to list
if (gl->which == L_CHANNEL) {
- if (sscanf (who,"%d",&ch) == 1) {
+ if (sscanf(who, "%d", &ch) == 1) {
if (!in_list(p, L_ADMIN, parray[p].name) &&
ch == 0) {
pprintf(p, "Only admins may join "