diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-03 07:55:11 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-03 07:55:11 +0100 |
commit | 0b86ce9d44a54cddc3caacc18f0b7fd276047f07 (patch) | |
tree | 0b381a47828377cd444167702d82ab4a95c220f9 | |
parent | 8f69c86da70fbea2bda8a05afbfaa3eae93c022c (diff) | |
download | weechat-0b86ce9d44a54cddc3caacc18f0b7fd276047f07.zip |
fifo: fix invalid pointer type
-rw-r--r-- | src/plugins/fifo/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index a83081744..850c8683e 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -426,7 +426,7 @@ fifo_config_cb (void *data, const char *option, const char *value) int weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) { - char *str_option[256]; + char str_option[256]; /* make C compiler happy */ (void) argc; |