diff options
author | Guido Günther <agx@sigxcpu.org> | 2024-08-23 19:56:48 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2024-12-01 21:41:10 +0000 |
commit | ce8989182c8f6e0ba1e676772b47c91de2017b94 (patch) | |
tree | 2f979fad88768795f779abfb9e6d5894169a7443 | |
parent | e627062674a4196ee1f5d3fc99dd704da6d69f9b (diff) |
cli: Fix indent
We indent with one space after }
Signed-off-by: Guido Günther <agx@sigxcpu.org>
-rw-r--r-- | cli/mmcli.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c index b8dbf2cf..1e98e51d 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -500,13 +500,13 @@ main (gint argc, gchar **argv) mmcli_modem_signal_shutdown (); } else if (mmcli_modem_oma_options_enabled ()) { mmcli_modem_oma_shutdown (); - } else if (mmcli_sim_options_enabled ()) { + } else if (mmcli_sim_options_enabled ()) { mmcli_sim_shutdown (); } else if (mmcli_bearer_options_enabled ()) { mmcli_bearer_shutdown (); - } else if (mmcli_sms_options_enabled ()) { + } else if (mmcli_sms_options_enabled ()) { mmcli_sms_shutdown (); - } else if (mmcli_call_options_enabled ()) { + } else if (mmcli_call_options_enabled ()) { mmcli_call_shutdown (); } else if (mmcli_modem_options_enabled ()) { mmcli_modem_shutdown (); |