mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Indent.
This commit is contained in:
parent
697abdfdfc
commit
eaa553bfd5
3 changed files with 36 additions and 35 deletions
|
@ -302,7 +302,9 @@ static void dmenu_mode_init ( Mode *sw )
|
||||||
g_free ( estr );
|
g_free ( estr );
|
||||||
}
|
}
|
||||||
pd->cmd_list = get_dmenu ( fd == NULL ? stdin : fd, &( pd->cmd_list_length ) );
|
pd->cmd_list = get_dmenu ( fd == NULL ? stdin : fd, &( pd->cmd_list_length ) );
|
||||||
if(fd != NULL ) fclose(fd);
|
if ( fd != NULL ) {
|
||||||
|
fclose ( fd );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int dmenu_token_match ( const Mode *sw, char **tokens, int not_ascii, int case_sensitive, unsigned int index )
|
static int dmenu_token_match ( const Mode *sw, char **tokens, int not_ascii, int case_sensitive, unsigned int index )
|
||||||
|
|
|
@ -73,6 +73,5 @@ int main ( int argc, char ** argv )
|
||||||
TASSERT ( str[0] == '/' );
|
TASSERT ( str[0] == '/' );
|
||||||
g_free ( str );
|
g_free ( str );
|
||||||
|
|
||||||
|
|
||||||
g_strfreev ( list );
|
g_strfreev ( list );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue