From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 9F49C383E82D; Mon, 5 Oct 2020 16:35:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9F49C383E82D Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jonathan Wakely To: glibc-cvs@sourceware.org Subject: [glibc] manual: Fix typo X-Act-Checkin: glibc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 3102e28bd11ed1083d3defdfd75e6d1273ab45f9 X-Git-Newrev: 5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d Message-Id: <20201005163530.9F49C383E82D@sourceware.org> Date: Mon, 5 Oct 2020 16:35:30 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Oct 2020 16:35:30 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d commit 5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d Author: Jonathan Wakely Date: Mon Oct 5 17:29:38 2020 +0100 manual: Fix typo Diff: --- manual/threads.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/threads.texi b/manual/threads.texi index 4ab0622443..5bcfe32d6a 100644 --- a/manual/threads.texi +++ b/manual/threads.texi @@ -896,7 +896,7 @@ Model Aware Atomic Operations, gcc, Using the GNU Compiler Collection @smallexample if (__libc_single_threaded) - ++refeference_count; + ++reference_count; else __atomic_fetch_add (&reference_count, 1, __ATOMIC_ACQ_REL); @end smallexample