From patchwork Wed Apr 3 17:56:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 1076255 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-498820-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="wYOiRibV"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44ZDKz62bvz9sSP for ; Thu, 4 Apr 2019 04:56:54 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=D5ucH5NiRWlxbIXFxmxY2MwVxseZtmnaAacrhkWdEJlfbyNgMtDj8 qpEW1riF/sEDYf6lD1vKmfJEL4rNl3OqhLZN/cph/pdC61v3ciXJMkt7WWFdMFVu nLte+6DHTxz3/6nUasutOqWENll9JrBCx6YKTSc/KtOJekQT1oXPiA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=okUAILs2513vCxl0vJzfjKcyoPY=; b=wYOiRibVMFYQOGT3mr2J cmmNhec8A/rZB2A6B1N3DI1061onMseGwIiJh49ESBL2XRWGF+VhMz6e6HWvqXsi rvadYksYVN3zkaSSLj32pRF9iaKtOHI0n/RlOt3IoP7hM5xkekfnQLU7jh0+rjJa aA+BjPZQHxMiHiZ+b598Chk= Received: (qmail 9992 invoked by alias); 3 Apr 2019 17:56:46 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 9983 invoked by uid 89); 3 Apr 2019 17:56:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-14.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 03 Apr 2019 17:56:45 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 51FA63007C43 for ; Wed, 3 Apr 2019 17:56:42 +0000 (UTC) Received: from localhost (unknown [10.33.36.2]) by smtp.corp.redhat.com (Postfix) with ESMTP id 04BBE2FC62 for ; Wed, 3 Apr 2019 17:56:41 +0000 (UTC) Date: Wed, 3 Apr 2019 18:56:41 +0100 From: Jonathan Wakely To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix typo in comment Message-ID: <20190403175641.GA8283@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.11.3 (2019-02-01) * files.c (search_path_exhausted): Fix typo in comment. Committed as obvious. commit 0e105a283e738b74744fa806a19d5f4afe56732a Author: Jonathan Wakely Date: Wed Apr 3 18:55:08 2019 +0100 Fix typo in comment * files.c (search_path_exhausted): Fix typo in comment. diff --git a/libcpp/files.c b/libcpp/files.c index 77dc1889471..b0ac22be6ba 100644 --- a/libcpp/files.c +++ b/libcpp/files.c @@ -455,7 +455,7 @@ find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch, return false; } -/* Return tue iff the missing_header callback found the given HEADER. */ +/* Return true iff the missing_header callback found the given HEADER. */ static bool search_path_exhausted (cpp_reader *pfile, const char *header, _cpp_file *file) {