From 48bc2afb3e6bb521dc8185131e63ce664462e41c Mon Sep 17 00:00:00 2001 From: QC Date: Sat, 27 Sep 2014 13:20:52 +0200 Subject: Indent. --- source/rofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/rofi.c b/source/rofi.c index 44723778..d16de748 100644 --- a/source/rofi.c +++ b/source/rofi.c @@ -1553,7 +1553,7 @@ MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prom if ( state.selected_line != NULL ) { // The cast to unsigned in here is valid, we checked if selected_line > 0. // So its maximum range is 0-2³¹, well within the num_lines range. - if ( (*( state.selected_line )) >= 0 && (unsigned int) ( *( state.selected_line ) ) <= state.num_lines ) { + if ( ( *( state.selected_line ) ) >= 0 && (unsigned int) ( *( state.selected_line ) ) <= state.num_lines ) { state.selected = *( state.selected_line ); } } -- cgit v1.2.3