From 3557bcbb7c1bfe9c7be8d6d3f9400f90e1b6da33 Mon Sep 17 00:00:00 2001 From: Klaus Ethgen Date: Sun, 25 Jun 2017 21:57:35 +0100 Subject: [PATCH] Fix int<->uint problem --- src/rcfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1