From: Klaus Ethgen Date: Sun, 25 Jun 2017 20:57:35 +0000 (+0100) Subject: Fix int<->uint problem X-Git-Tag: v1.4~148 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=3557bcbb7c1bfe9c7be8d6d3f9400f90e1b6da33 Fix int<->uint problem --- diff --git a/src/rcfile.c b/src/rcfile.c index 81178587..9ed1342b 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -631,7 +631,7 @@ static gboolean load_global_params(const gchar **attribute_names, const gchar ** if (READ_BOOL(*options, use_saved_window_positions_for_new_windows)) continue; if (READ_BOOL(*options, tools_restore_state)) continue; - if (READ_UINT(*options, log_window_lines)) continue; + if (READ_INT(*options, log_window_lines)) continue; /* Properties dialog options */ if (READ_CHAR(*options, properties.tabs_order)) continue;