From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from 2.mo552.mail-out.ovh.net (2.mo552.mail-out.ovh.net [178.33.105.233]) by sourceware.org (Postfix) with ESMTPS id 86C533858439 for ; Mon, 24 Oct 2022 11:48:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 86C533858439 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=jwilk.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=jwilk.net Received: from mxplan6.mail.ovh.net (unknown [10.109.143.124]) by mo552.mail-out.ovh.net (Postfix) with ESMTPS id 23E13297BE; Mon, 24 Oct 2022 11:48:12 +0000 (UTC) Received: from jwilk.net (37.59.142.101) by DAG4EX1.mxp6.local (172.16.2.31) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.12; Mon, 24 Oct 2022 13:48:10 +0200 Authentication-Results: garm.ovh; auth=pass (GARM-101G004fbdc88c0-8f16-4f0a-9b2d-1bedecdd21fd, 2B1D003A3B6BC68ACF02D3639928F29318F2204B) smtp.auth=jwilk@jwilk.net X-OVh-ClientIp: 5.172.255.227 From: Jakub Wilk To: CC: Joseph Myers Subject: [PATCH] manual: Add missing % in int conversion list Date: Mon, 24 Oct 2022 13:48:08 +0200 Message-ID: <20221024114808.3120-1-jwilk@jwilk.net> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [37.59.142.101] X-ClientProxiedBy: DAG3EX2.mxp6.local (172.16.2.22) To DAG4EX1.mxp6.local (172.16.2.31) X-Ovh-Tracer-GUID: 778c39bd-cd2d-4265-93e8-b8a2a46aa0d2 X-Ovh-Tracer-Id: 8897986963939776477 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedvfedrgedtgedggedtucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvvefufffkofgggfgtihesthekredtredttdenucfhrhhomheplfgrkhhusgcuhghilhhkuceojhifihhlkhesjhifihhlkhdrnhgvtheqnecuggftrfgrthhtvghrnhepfefhteffhfffheetudefvdefheffgfduleejheeiteeihfefffejveeljeevheeinecukfhppeduvdejrddtrddtrddupdefjedrheelrddugedvrddutddunecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepuddvjedrtddrtddruddpmhgrihhlfhhrohhmpeeojhifihhlkhesjhifihhlkhdrnhgvtheqpdhnsggprhgtphhtthhopedupdhrtghpthhtoheplhhisggtqdgrlhhphhgrsehsohhurhgtvgifrghrvgdrohhrghdpjhhoshgvphhhsegtohguvghsohhurhgtvghrhidrtghomhdpoffvtefjohhsthepmhhoheehvddpmhhouggvpehsmhhtphhouhht X-Spam-Status: No, score=-11.0 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_STATUS,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,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: Signed-off-by: Jakub Wilk --- manual/stdio.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/stdio.texi b/manual/stdio.texi index 753c50920d..4aa1a2bc2d 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -1912,7 +1912,7 @@ This section describes the options for the @samp{%d}, @samp{%i}, specifications. These conversions print integers in various formats. The @samp{%d} and @samp{%i} conversion specifications both print an -@code{int} argument as a signed decimal number; while @samp{b}, @samp{%o}, +@code{int} argument as a signed decimal number; while @samp{%b}, @samp{%o}, @samp{%u}, and @samp{%x} print the argument as an unsigned binary, octal, decimal, or hexadecimal number (respectively). The @samp{%X} conversion specification is just like @samp{%x} except that it uses the characters -- 2.37.2