From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailrelay.tugraz.at (mailrelay.tugraz.at [129.27.2.202]) by sourceware.org (Postfix) with ESMTPS id 6FAF13858431 for ; Sun, 20 Aug 2023 07:26:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 6FAF13858431 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=tugraz.at Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=tugraz.at Received: from vra-173-126.tugraz.at (vra-173-126.tugraz.at [129.27.173.126]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4RT6c24lbHz1LM05; Sun, 20 Aug 2023 09:26:26 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4RT6c24lbHz1LM05 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1692516386; bh=RojjKiODiJHBES7GM94bzcCoSfFGQZKi0B9JIyShRaY=; h=Subject:From:To:Cc:Date:From; b=hYRDvM98fnpt4VERPRnL7b85GsW39jRyATcrO8oEh2kzRi8ID4dzaV6af3FNwxQcm vSZtW3AGmAwSvuG+Eg+Q+j/+74+3hvz2/ArUziGoCP319+z32AeZ/Dofn0sCj+x+sj YP/rRodPHPsaz4h9Cina3R6jwRcBDewvp3VT5/1U= Message-ID: Subject: [committed] fix misleading identation breaking bootstrap From: Martin Uecker To: gcc-patches@gcc.gnu.org Cc: Tomas Kalibera , Jonathan Yong <10walls@gmail.com> Date: Sun, 20 Aug 2023 09:26:26 +0200 Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.38.3-1+deb11u2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-TUG-Backscatter-control: G/VXY7/6zeyuAY/PU2/0qw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.116 X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Committed as obvious. 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. diff --git a/gcc/c-family/c-format.cc b/gcc/c-family/c-format.cc index 122ff9bd1cd..b3ef2d44ce9 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)