From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32b.google.com (mail-wm1-x32b.google.com [IPv6:2a00:1450:4864:20::32b]) by sourceware.org (Postfix) with ESMTPS id 1408E3988895 for ; Mon, 10 May 2021 17:57:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1408E3988895 Received: by mail-wm1-x32b.google.com with SMTP id j3-20020a05600c4843b02901484662c4ebso11670727wmo.0 for ; Mon, 10 May 2021 10:57:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=uwK/Zj0cVBGZDcI1tSawjgTV+FzJDoJDPF1ZQ/kt+1U=; b=eNO5g0ElswVQBNoWmRRHnm0E7b6KiQduCfzFM8GoSGVylJ1o56H0Q2OBIXTdLtOL/e T9OH08CWzefYF61sQqiapLrBKz90EQy7DlU9WDbuCIU5Vju9yYQwOs2O8e0mCLpVhMUS XZVOGONLZ73Hv5hPlVY252vrYRAg2VULbGO923eZG4ZkFE57vsc/ol8gdxwugQ9yiqh9 H9LP4GXM55GVxAd8lhzSYJG6IGmAxPGOjKcbqiuIdAkw0iciOK5lZewjAGkHTQozwr6T Vi/XEFtUL3lUVdhzbBw9KzOsFUD7LIfXGMQjE+3RFbzVZ7SVS+IzbSxAyVfv/MzQsZEk Sh7Q== X-Gm-Message-State: AOAM5336TpoOXRL+4auYZXf1zl0ZOhflwVm/9pIdKXpS8OMfJ3msI/lo XTBlvceZPTZqXXDsshE9glc= X-Google-Smtp-Source: ABdhPJwXT+/wJS3xNHC6gH723JTXhHMC/FNPZpy3IR10TyE+S7DRdzRf25dSAbcVmNZaLOklMkd/vQ== X-Received: by 2002:a7b:c252:: with SMTP id b18mr27920836wmj.32.1620669423239; Mon, 10 May 2021 10:57:03 -0700 (PDT) Received: from sqli.sqli.com ([195.53.121.100]) by smtp.googlemail.com with ESMTPSA id m13sm24318830wrw.86.2021.05.10.10.57.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 10 May 2021 10:57:03 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: Florian Weimer , Jakub Wilk , Alejandro Colomar , linux-man@vger.kernel.org, libc-alpha@sourceware.org Subject: [PATCH 32/39] pipe.2: wfix Date: Mon, 10 May 2021 19:55:41 +0200 Message-Id: <20210510175546.28445-33-alx.manpages@gmail.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210510175546.28445-1-alx.manpages@gmail.com> References: <20210510175546.28445-1-alx.manpages@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 May 2021 17:57:05 -0000 For consistency with other pages. Signed-off-by: Alejandro Colomar --- man2/pipe.2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man2/pipe.2 b/man2/pipe.2 index 9ac0341cf..93fbd36f2 100644 --- a/man2/pipe.2 +++ b/man2/pipe.2 @@ -40,10 +40,10 @@ pipe, pipe2 \- create pipe .nf .B #include .PP -.BI "int pipe(int " pipefd "[2]);" +.BI "int pipe(int " pipefd [2]); .PP .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" -.BR "#include " " /* Obtain O_* constant definitions */" +.BR "#include " " /* Definition of " O_* " constants */" .B #include .PP .BI "int pipe2(int " pipefd "[2], int " flags ); -- 2.31.1