degesch: fix trivial user command handlers

This commit is contained in:
Přemysl Eric Janouch 2015-06-20 20:23:14 +02:00
parent 0875bbfba7
commit 4970929f1d
1 changed files with 2 additions and 2 deletions

View File

@ -6601,9 +6601,9 @@ CHANMODE_HANDLER (voice, true, 'v') CHANMODE_HANDLER (devoice, false, 'v')
{ \
(void) ctx; \
if (*a->arguments) \
irc_send (a->s, #command " %s", a->arguments); \
irc_send (a->s, command " %s", a->arguments); \
else \
irc_send (a->s, #command); \
irc_send (a->s, command); \
return true; \
}