aboutsummaryrefslogtreecommitdiffstats
path: root/commands.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-01-20 16:15:49 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2006-01-20 16:15:49 +0100
commitf73b9697f9be18e04ec7458634520f9dd2e2432f (patch)
treebc85b7818c6f76e584a92a067b3b2091d6c14384 /commands.h
parent55ec2d66f04d1ea96e180c5a46e90a4294dea0b1 (diff)
Renamed commands.c, got rid of return values in all command functions.
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.h b/commands.h
index a881499a..38572360 100644
--- a/commands.h
+++ b/commands.h
@@ -32,7 +32,7 @@ typedef struct command
{
char *command;
int required_parameters;
- int (*execute)(irc_t *, char **args);
+ void (*execute)(irc_t *, char **args);
int flags;
} command_t;