From owner-dev-commits-src-all@freebsd.org Sat Apr 3 22:01:30 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 343475C0B24; Sat, 3 Apr 2021 22:01:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FCW8p0wxMz3GP7; Sat, 3 Apr 2021 22:01:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 079C91A2C8; Sat, 3 Apr 2021 22:01:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 133M1TGJ063189; Sat, 3 Apr 2021 22:01:29 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 133M1ThI063188; Sat, 3 Apr 2021 22:01:29 GMT (envelope-from git) Date: Sat, 3 Apr 2021 22:01:29 GMT Message-Id: <202104032201.133M1ThI063188@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Konstantin Belousov Subject: git: 4c2e9c35fb19 - main - libc//sys/cerror.S: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: kib X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 4c2e9c35fb1958544040493e4fd8d8b8a0927677 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Apr 2021 22:01:30 -0000 The branch main has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=4c2e9c35fb1958544040493e4fd8d8b8a0927677 commit 4c2e9c35fb1958544040493e4fd8d8b8a0927677 Author: Konstantin Belousov AuthorDate: 2021-04-03 01:36:41 +0000 Commit: Konstantin Belousov CommitDate: 2021-04-03 22:00:57 +0000 libc//sys/cerror.S: fix typo Sponsored by: The FreeBSD Foundation MFC after: 3 days --- lib/libc/amd64/sys/cerror.S | 2 +- lib/libc/i386/sys/cerror.S | 2 +- lib/libc/powerpc/sys/cerror.S | 2 +- lib/libc/powerpc64/sys/cerror.S | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libc/amd64/sys/cerror.S b/lib/libc/amd64/sys/cerror.S index ffce9d561993..1928acd0b7a9 100644 --- a/lib/libc/amd64/sys/cerror.S +++ b/lib/libc/amd64/sys/cerror.S @@ -43,7 +43,7 @@ __FBSDID("$FreeBSD$"); /* * The __error() function is thread aware. For non-threaded - * programs and the initial threaded in threaded programs, + * programs and the initial thread in threaded programs, * it returns a pointer to the global errno variable. */ .globl CNAME(__error) diff --git a/lib/libc/i386/sys/cerror.S b/lib/libc/i386/sys/cerror.S index 423d716cb651..47bd0fade000 100644 --- a/lib/libc/i386/sys/cerror.S +++ b/lib/libc/i386/sys/cerror.S @@ -43,7 +43,7 @@ __FBSDID("$FreeBSD$"); /* * The __error() function is thread aware. For non-threaded - * programs and the initial threaded in threaded programs, + * programs and the initial thread in threaded programs, * it returns a pointer to the global errno variable. */ .globl CNAME(__error) diff --git a/lib/libc/powerpc/sys/cerror.S b/lib/libc/powerpc/sys/cerror.S index c2bc994b9c33..9ec3cbaf63a2 100644 --- a/lib/libc/powerpc/sys/cerror.S +++ b/lib/libc/powerpc/sys/cerror.S @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); /* * The __error() function is thread aware. For non-threaded - * programs and the initial threaded in threaded programs, + * programs and the initial thread in threaded programs, * it returns a pointer to the global errno variable. */ HIDENAME(cerror): diff --git a/lib/libc/powerpc64/sys/cerror.S b/lib/libc/powerpc64/sys/cerror.S index 3362c9fdf046..93172fdb822e 100644 --- a/lib/libc/powerpc64/sys/cerror.S +++ b/lib/libc/powerpc64/sys/cerror.S @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); /* * The __error() function is thread aware. For non-threaded - * programs and the initial threaded in threaded programs, + * programs and the initial thread in threaded programs, * it returns a pointer to the global errno variable. */ ENTRY_NOPROF(HIDENAME(cerror))