1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00: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:
Timo Sirainen 2002-02-17 14:42:53 +00:00 committed by cras
parent c02ac34c65
commit effd1185a4

View File

@ -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();
}