From 1e3003ca0865329207591896534a6f4fcfde62aa Mon Sep 17 00:00:00 2001 From: Martin Uecker Date: Sun, 20 Aug 2023 09:03:13 +0200 Subject: [PATCH] fix misleading identation breaking bootstrap Fix identation issue introduced by 966f3c13 "Fix format attribute for printf". gcc/c-family/ChangeLog: * c-format.cc: Fix identation. --- gcc/c-family/c-format.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/c-family/c-format.cc b/gcc/c-family/c-format.cc index 122ff9bd1cda..b3ef2d44ce99 100644 --- a/gcc/c-family/c-format.cc +++ b/gcc/c-family/c-format.cc @@ -1214,8 +1214,8 @@ check_function_format (const_tree fn, tree attrs, int nargs, skipped_default_format = true; break; } - if (skipped_default_format) - continue; + if (skipped_default_format) + continue; } if (warn_format) -- 2.47.2