From 72f760cd48941fededc23b1c2fc451c50dc1098d Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 1 Jan 2013 17:28:42 +0100 Subject: [PATCH] aspell: fix compilation warning --- src/plugins/aspell/weechat-aspell-bar-item.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/aspell/weechat-aspell-bar-item.c b/src/plugins/aspell/weechat-aspell-bar-item.c index e0e12e7ef..aae47d908 100644 --- a/src/plugins/aspell/weechat-aspell-bar-item.c +++ b/src/plugins/aspell/weechat-aspell-bar-item.c @@ -67,8 +67,8 @@ weechat_aspell_bar_item_suggest (void *data, struct t_gui_bar_item *item, struct t_gui_window *window) { struct t_gui_buffer *buffer; - const char *suggestions; - char str_delim[128], *pos, *suggestions2; + const char *suggestions, *pos; + char str_delim[128], *suggestions2; /* make C compiler happy */ (void) data;