From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 6IRkC5FHy2BfKQAAWB0awg (envelope-from ) for ; Thu, 17 Jun 2021 09:01:05 -0400 Received: by simark.ca (Postfix, from userid 112) id 2C2E01F163; Thu, 17 Jun 2021 09:01:05 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 7AEBB1E813 for ; Thu, 17 Jun 2021 09:01:04 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 00A6F3943423 for ; Thu, 17 Jun 2021 13:01:04 +0000 (GMT) Received: from mail-wr1-f46.google.com (mail-wr1-f46.google.com [209.85.221.46]) by sourceware.org (Postfix) with ESMTPS id AE7613857431 for ; Thu, 17 Jun 2021 13:00:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AE7613857431 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wr1-f46.google.com with SMTP id n7so6720188wri.3 for ; Thu, 17 Jun 2021 06:00:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:from:to:cc:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=VeGh5pYk+TtUnQcVE0TPfaDVLRaA9Xj0cYdlooLs4p4=; b=tQKCaomj2nlIUFYEU+GBsOxkzg0GzyW8gyYSo7lM7K2UwAFofOWmSMOVBDK0V/lTmV 5SDZu4A61WkvXg2qIR7sl54uqml2yO9rvFtMoc3n6ASIHRLmzfWfm7/HFp5llM+T3KDc yv/E88SaI086pO4d+CGyOOCvaSHNsZ4UoUe/Uw/xgWV8d9trVsFSuZM2Ft6fJelwHBcu DQ+g5MZHuI7jCku3ROjWflpA0Ymn5tTJothn1evDEcwA5OScJdhJyuKVy2lW6lFvqhtV K/CIZTTdY0ii10ERJE33BpW874c/6ivb3K4cruPlIRJm66kv9MDOHrZRQXbWWuVg+4mU t4sw== X-Gm-Message-State: AOAM532RILqEykmIhf99v0WFu3FgLFUf6M7ArHFngVSoz5R4ft4fYHeL ztU4kCTxrW7un7DGmFnu/fKdNFGCDldKSSBS X-Google-Smtp-Source: ABdhPJxDKz3ZIcbaIdMUW6gm3f3QgbmWn0ilVXQQSXI1Dy/Mmwpu1JFCFExuJ/eneXCGB/iMPI2MEA== X-Received: by 2002:adf:f3c1:: with SMTP id g1mr5586673wrp.252.1623934851212; Thu, 17 Jun 2021 06:00:51 -0700 (PDT) Received: from ?IPv6:2001:8a0:f932:6a00:6b6e:c7b6:c5a7:aac3? ([2001:8a0:f932:6a00:6b6e:c7b6:c5a7:aac3]) by smtp.gmail.com with ESMTPSA id e17sm6044919wre.79.2021.06.17.06.00.49 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 17 Jun 2021 06:00:50 -0700 (PDT) Subject: Re: [PATCH 4/4] Add a unit test for scoped_ignore_sigpipe From: Pedro Alves To: Lancelot SIX References: <20210615111429.1879286-1-pedro@palves.net> <20210615111429.1879286-5-pedro@palves.net> <20210615222530.kolr7pn7f2uv5fy5@Plymouth> Message-ID: <8f5e4063-7d6a-98cd-a56b-8cd70199c39d@palves.net> Date: Thu, 17 Jun 2021 14:00:49 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210615222530.kolr7pn7f2uv5fy5@Plymouth> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2021-06-15 11:26 p.m., Lancelot SIX wrote: > Hi, Hi! > > There is a tiny typo (see above). >> + /* No scoped_ignore_sigpipe is is scope anymore, so this should > > s/is is/is in/ Thanks, I fixed this.