From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 328273858C2D; Sun, 2 Apr 2023 23:27:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 328273858C2D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1680478079; bh=XBqN/PKhe7SkR5NHyM8Lbkma10AWT8LhWZ3Ytz7HO3Q=; h=From:To:Subject:Date:From; b=D7y7Icjb8W/Vt0EOG5LvuS8qIug/2RpjQxtw4EyXoeanbUDllGCz1Xh13GWeu8njX meaYu8ShWk5ZE3nmBIQsxkXKVsL9cm4w6wbg1yNMC91+dWBnfX2lkFaVmgvKui9m+0 CZKzzO/lnVdFE6Gocypgwwm6unBWTLqYVURzbQfQ= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] hurd: Fix file name in #error X-Act-Checkin: glibc X-Git-Author: Sergey Bugaev X-Git-Refname: refs/heads/master X-Git-Oldrev: 226f1f8a94427a7ae0b4dc8f5ef9cc765ba6b5ce X-Git-Newrev: 6a73ea505bc47fdb148f3fe506c1ed3f3d76db46 Message-Id: <20230402232759.328273858C2D@sourceware.org> Date: Sun, 2 Apr 2023 23:27:59 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6a73ea505bc47fdb148f3fe506c1ed3f3d76db46 commit 6a73ea505bc47fdb148f3fe506c1ed3f3d76db46 Author: Sergey Bugaev Date: Sun Mar 19 18:09:50 2023 +0300 hurd: Fix file name in #error Signed-off-by: Sergey Bugaev Message-Id: <20230319151017.531737-8-bugaevc@gmail.com> Diff: --- hurd/longjmp-ts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hurd/longjmp-ts.c b/hurd/longjmp-ts.c index bc4add3232..0032d7474f 100644 --- a/hurd/longjmp-ts.c +++ b/hurd/longjmp-ts.c @@ -27,5 +27,5 @@ _hurd_longjmp_thread_state (void *state, jmp_buf env, int val) /* Set all the registers in *STATE to the values described by ENV and RETVAL. After this, setting that thread's state to STATE should be just like calling `longjmp (ENV, RETVAL)'. */ - #error "Need to write sysdeps/mach/hurd/MACHINE/longjmp-ctx.c" + #error "Need to write sysdeps/mach/hurd/MACHINE/longjmp-ts.c" }