cli: consistently use spaces for indentation

This commit is contained in:
Ben Chan
2014-05-19 23:46:27 -07:00
committed by Aleksander Morgado
parent 5d47478d06
commit d4177f554b
16 changed files with 174 additions and 174 deletions

View File

@@ -71,17 +71,17 @@ static GOptionEntry entries[] = {
GOptionGroup *
mmcli_manager_get_option_group (void)
{
GOptionGroup *group;
GOptionGroup *group;
/* Status options */
group = g_option_group_new ("manager",
"Manager options",
"Show manager options",
NULL,
NULL);
g_option_group_add_entries (group, entries);
/* Status options */
group = g_option_group_new ("manager",
"Manager options",
"Show manager options",
NULL,
NULL);
g_option_group_add_entries (group, entries);
return group;
return group;
}
gboolean