From: H.J. Lu Date: Tue, 15 Jul 2025 02:16:40 +0000 (+0800) Subject: gas: Re-indent case OPTION_SFRAME: X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1535d2a0ce4e474f1a42e8b8720de01b7dc1f656;p=thirdparty%2Fbinutils-gdb.git 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 --- 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;