Skip to content

Commit

Permalink
Fix int<->uint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mowgli committed Jun 25, 2017
1 parent 6eebdfd commit 3557bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3557bcb

Please sign in to comment.