From 04eebf964ad8dc109e8417e8917e567532a0082d Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Mon, 14 Dec 2015 20:28:25 +0100 Subject: [PATCH] Indent --- source/dialogs/drun.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c index 777dbc79..3596edf4 100644 --- a/source/dialogs/drun.c +++ b/source/dialogs/drun.c @@ -317,21 +317,21 @@ static int drun_token_match ( const Mode *data, ) { DRunModePrivateData *rmpd = (DRunModePrivateData *) data->private_data; - int match = 1; - if(tokens ) { + int match = 1; + if ( tokens ) { for ( int j = 0; match && tokens != NULL && tokens[j] != NULL; j++ ) { - int test = 0; + int test = 0; char *ftokens[2] = { tokens[j], NULL }; if ( !test && rmpd->entry_list[index].name && - token_match ( ftokens, rmpd->entry_list[index].name, not_ascii, case_sensitive ) ) { - test =1; + token_match ( ftokens, rmpd->entry_list[index].name, not_ascii, case_sensitive ) ) { + test = 1; } if ( !test && rmpd->entry_list[index].generic_name && - token_match ( ftokens, rmpd->entry_list[index].generic_name, not_ascii, case_sensitive ) ) { - test =1; + token_match ( ftokens, rmpd->entry_list[index].generic_name, not_ascii, case_sensitive ) ) { + test = 1; } - if ( !test && token_match( ftokens, rmpd->entry_list[index].exec, not_ascii, case_sensitive)){ + if ( !test && token_match ( ftokens, rmpd->entry_list[index].exec, not_ascii, case_sensitive ) ) { test = 1; } if ( test == 0 ) {