From 1535d2a0ce4e474f1a42e8b8720de01b7dc1f656 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 15 Jul 2025 10:16:40 +0800 Subject: [PATCH] gas: Re-indent case OPTION_SFRAME: PR gas/33125 * gas/as.c (parse_args): Re-indent case OPTION_SFRAME: Signed-off-by: H.J. Lu --- gas/as.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gas/as.c b/gas/as.c index ce89d6f5aa7..acdf6bb74fd 100644 --- a/gas/as.c +++ b/gas/as.c @@ -1041,12 +1041,12 @@ This program has absolutely no warranty.\n")); case OPTION_SFRAME: if (optarg) { - if (strcasecmp (optarg, "no") == 0) - flag_gen_sframe = 0; - else if (strcasecmp (optarg, "yes") == 0) - flag_gen_sframe = 1; - else - as_fatal (_("Invalid --gsframe option: `%s'"), optarg); + if (strcasecmp (optarg, "no") == 0) + flag_gen_sframe = 0; + else if (strcasecmp (optarg, "yes") == 0) + flag_gen_sframe = 1; + else + as_fatal (_("Invalid --gsframe option: `%s'"), optarg); } else flag_gen_sframe = 1; -- 2.47.2