mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05:00
fixed a compiler warning
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2500 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c02ac34c65
commit
effd1185a4
@ -83,7 +83,8 @@ void gui_set_default_indent(const char *name)
|
||||
|
||||
list = name == NULL ? NULL :
|
||||
g_hash_table_lookup(indent_functions, name);
|
||||
default_indent_func = list == NULL ? NULL : list->data;
|
||||
default_indent_func = list == NULL ? NULL :
|
||||
(INDENT_FUNC) list->data;
|
||||
gui_windows_reset_settings();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user