summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2014-09-27 13:20:52 +0200
committerQC <qball@gmpclient.org>2014-09-27 13:20:52 +0200
commit48bc2afb3e6bb521dc8185131e63ce664462e41c (patch)
tree4b21a38ea8bf11f78df1149531cc8943344798c8
parent404dc35c027ed8c09579254b294e47e754e8f3d0 (diff)
Indent.
-rw-r--r--source/rofi.c2
1 files changed, 1 insertions, 1 deletions
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 );
}
}