diff options
author | Luke Bratch <luke@bratch.co.uk> | 2022-11-25 22:04:07 +0000 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2022-11-25 22:04:07 +0000 |
commit | 2639271eaab1990e0fb5832cb8bfbcdaf0e33022 (patch) | |
tree | 98c7e333ea6bb845200599c98ec83bb1064458b7 /functions.c | |
parent | ae1390b2bef4dc6a1a113cddaee37d745b559b1f (diff) |
Fix broken debugprint() call in isnickinanychannel() which was referencing a non-existent printf string.
Diffstat (limited to 'functions.c')
-rw-r--r-- | functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.c b/functions.c index 6f8d131..fcb1799 100644 --- a/functions.c +++ b/functions.c @@ -1474,7 +1474,7 @@ int isnickinanychannel(struct channel *channels, int maxchannelcount, char *nick } } - debugprint(DEBUG_FULL, "isnickinanychannel(): nick '%s' not found in any channel '%s', returning 0.\n", nick); + debugprint(DEBUG_FULL, "isnickinanychannel(): nick '%s' not found in any channel, returning 0.\n", nick); return 0; } |