Remove some compiler warnings
This commit is contained in:
parent
d3a62a9434
commit
9dd2c1b616
@ -2197,15 +2197,13 @@ config_file_option_free (struct t_config_option *option)
|
||||
new_options = option->next_option;
|
||||
if (option->next_option)
|
||||
(option->next_option)->prev_option = option->prev_option;
|
||||
ptr_section->options = new_options;
|
||||
}
|
||||
|
||||
/* free data */
|
||||
config_file_option_free_data (option);
|
||||
|
||||
free (option);
|
||||
|
||||
if (ptr_section)
|
||||
ptr_section->options = new_options;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -470,14 +470,16 @@ gui_chat_draw (struct t_gui_buffer *buffer, int erase)
|
||||
void
|
||||
gui_chat_draw_line (struct t_gui_buffer *buffer, struct t_gui_line *line)
|
||||
{
|
||||
struct t_gui_window *ptr_win;
|
||||
unsigned char *message_without_color;
|
||||
GtkTextIter start, end;
|
||||
//struct t_gui_window *ptr_win;
|
||||
//unsigned char *message_without_color;
|
||||
//GtkTextIter start, end;
|
||||
|
||||
(void) buffer;
|
||||
(void) line;
|
||||
|
||||
//ptr_win = gui_buffer_find_window (buffer);
|
||||
//if (ptr_win)
|
||||
/*
|
||||
ptr_win = gui_buffer_find_window (buffer);
|
||||
if (ptr_win)
|
||||
{
|
||||
message_without_color = gui_color_decode ((unsigned char *)(line->message));
|
||||
if (message_without_color)
|
||||
@ -488,9 +490,10 @@ gui_chat_draw_line (struct t_gui_buffer *buffer, struct t_gui_line *line)
|
||||
"\n", -1);
|
||||
gtk_text_buffer_get_bounds (GUI_WINDOW_OBJECTS(ptr_win)->textbuffer_chat,
|
||||
&start, &end);
|
||||
/* TODO */
|
||||
/*gtk_text_buffer_apply_tag (ptr_win->textbuffer_chat, ptr_win->texttag_chat, &start, &end);*/
|
||||
// TODO
|
||||
//gtk_text_buffer_apply_tag (ptr_win->textbuffer_chat, ptr_win->texttag_chat, &start, &end);
|
||||
free (message_without_color);
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
@ -812,7 +812,8 @@ gui_completion_list_add_option_value (struct t_gui_completion *completion)
|
||||
0, WEECHAT_LIST_POS_BEGINNING);
|
||||
if (option_found->value)
|
||||
{
|
||||
value_string = malloc (64);
|
||||
length = 64;
|
||||
value_string = malloc (length);
|
||||
if (value_string)
|
||||
{
|
||||
snprintf (value_string, length,
|
||||
|
Loading…
x
Reference in New Issue
Block a user