mirror of
https://github.com/weechat/weechat.git
synced 2026-07-06 09:43:13 +02:00
Remove compilation warning on 64-bit machines
This commit is contained in:
@@ -1848,7 +1848,7 @@ gui_completion_complete (struct t_gui_completion *completion)
|
||||
|
||||
while (ptr_item)
|
||||
{
|
||||
item_is_nick = ((int)(ptr_item->user_data) == 1);
|
||||
item_is_nick = ((long)(ptr_item->user_data) == 1);
|
||||
if ((item_is_nick
|
||||
&& (gui_completion_nickncmp (completion->base_word, ptr_item->data,
|
||||
length) == 0))
|
||||
|
||||
Reference in New Issue
Block a user