From 31669329bbf90edf37e5586909e2f0f3b995c5e2 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 29 Mar 2016 14:56:51 +0200 Subject: [PATCH] cli/trivial: fix TABs for indention --- clients/cli/connections.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/clients/cli/connections.c b/clients/cli/connections.c index 0a2d10e66..129a5298e 100644 --- a/clients/cli/connections.c +++ b/clients/cli/connections.c @@ -5546,8 +5546,8 @@ cleanup_bond: const char *master = NULL; const char *type = NULL; nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE}, - {"type", TRUE, &type, FALSE}, - {NULL} }; + {"type", TRUE, &type, FALSE}, + {NULL} }; /* Set global variables for use in TAB completion */ nmc_tab_completion.con_type = NM_SETTING_BOND_SETTING_NAME; @@ -5623,9 +5623,9 @@ cleanup_team: char *config = NULL; char *json = NULL; nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE}, - {"type", TRUE, &type, FALSE}, - {"config", TRUE, &config_c, FALSE}, - {NULL} }; + {"type", TRUE, &type, FALSE}, + {"config", TRUE, &config_c, FALSE}, + {NULL} }; /* Set global variables for use in TAB completion */ nmc_tab_completion.con_type = NM_SETTING_TEAM_SETTING_NAME; @@ -5821,11 +5821,11 @@ cleanup_bridge: unsigned long prio_int, path_cost_int; gboolean hairpin_bool; nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE}, - {"type", TRUE, &type, FALSE}, - {"priority", TRUE, &priority_c, FALSE}, - {"path-cost", TRUE, &path_cost_c, FALSE}, - {"hairpin", TRUE, &hairpin_c, FALSE}, - {NULL} }; + {"type", TRUE, &type, FALSE}, + {"priority", TRUE, &priority_c, FALSE}, + {"path-cost", TRUE, &path_cost_c, FALSE}, + {"hairpin", TRUE, &hairpin_c, FALSE}, + {NULL} }; /* Set global variables for use in TAB completion */ nmc_tab_completion.con_type = NM_SETTING_BRIDGE_SETTING_NAME; @@ -6187,7 +6187,7 @@ cleanup_macvlan: {"pi", TRUE, &pi_c, FALSE}, {"vnet-hdr", TRUE, &vnet_hdr_c, FALSE}, {"multi-queue", TRUE, &multi_queue_c, FALSE}, - {NULL} }; + {NULL} }; if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error)) return FALSE; @@ -6634,7 +6634,7 @@ cleanup_vxlan: if (argc) { /* Set extra connection properties. */ nmc_arg_t exp_args[] = { {"--", FALSE, NULL, TRUE}, - {NULL} }; + {NULL} }; if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error)) return FALSE; -- 2.17.1