diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-26 13:38:13 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-26 13:38:13 +0200 |
commit | e3be4a0e0abfe0368aba0b03c2ec59af8385ef3a (patch) | |
tree | bb988ce83237fb6ea0ec0f0e2b29dee684389aa1 /plugins/exec | |
parent | 46b0fe70ebc83500c5c2adbc124fbfb4d065d963 (diff) |
Eliminate some more plugin warnings
Diffstat (limited to 'plugins/exec')
-rw-r--r-- | plugins/exec/exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/exec/exec.c b/plugins/exec/exec.c index 6f3e350c..e2e2f5cf 100644 --- a/plugins/exec/exec.c +++ b/plugins/exec/exec.c @@ -26,9 +26,9 @@ #include "hexchat-plugin.h" static xchat_plugin *ph; /* plugin handle */ -static const char name[] = "Exec"; -static const char desc[] = "Execute commands inside HexChat"; -static const char version[] = "1.1"; +static char name[] = "Exec"; +static char desc[] = "Execute commands inside HexChat"; +static char version[] = "1.1"; static int run_command (char *word[], char *word_eol[], void *userdata) |