From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id C8ED73858D33; Mon, 19 Feb 2024 20:00:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C8ED73858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708372850; bh=0RTOuNA0OmkH51JGyFTnPIxEpwAMwE4CyXXJ93WFDO4=; h=To:Subject:Date:From:From; b=bMtDszu9tcs/qCu9iklbJjFgkNsxFSh0ssTn4DzE6otXMbt70NtfyoiI7FSf9gtSm VrRG3ZIX0L+EjXv+mqMlcVmW/rdFAlaHUjE+E7ynjS6gELktSi2y3gMrmKMw9/17Eh NXAbKzomM7DUk8mNxiYi7WgDeCwYy/wdxxjvbR/Q= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 60dfe344b601a225cf477da1720517872175dd1a X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4a56e1431bd0e2e3d435168216d7beec462b004a X-Git-Newrev: 60dfe344b601a225cf477da1720517872175dd1a Message-Id: <20240219200050.C8ED73858D33@sourceware.org> Date: Mon, 19 Feb 2024 20:00:50 +0000 (GMT) From: Florian Weimer List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via 60dfe344b601a225cf477da1720517872175dd1a (commit) from 4a56e1431bd0e2e3d435168216d7beec462b004a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 60dfe344b601a225cf477da1720517872175dd1a Author: Florian Weimer Date: Mon Feb 19 20:59:43 2024 +0100 gcc-14: Fix unintentional error in -Wimplicit-int example diff --git a/htdocs/gcc-14/porting_to.html b/htdocs/gcc-14/porting_to.html index bbbaa25a..901a1653 100644 --- a/htdocs/gcc-14/porting_to.html +++ b/htdocs/gcc-14/porting_to.html @@ -92,7 +92,7 @@ below). In the example below, the type of s should be
   write_string (fd, s)
   {
-    write (1, s, strlen (s));
+    write (fd, s, strlen (s));
   }
 
@@ -103,7 +103,7 @@ disregarding error handling and short writes): void write_string (int fd, const char *s) { - write (1, s, strlen (s)); + write (fd, s, strlen (s)); } ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-14/porting_to.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- gcc-wwwdocs