From b0a51e539542cd5303361cbf9908b404ea4eb3cc Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 4 Dec 1994 18:57:56 +0000 Subject: [PATCH] (__longjmp): Make arg const. --- sysdeps/m68k/__longjmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/m68k/__longjmp.c b/sysdeps/m68k/__longjmp.c index 7872817..10e1705 100644 --- a/sysdeps/m68k/__longjmp.c +++ b/sysdeps/m68k/__longjmp.c @@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */ setjmp call there to return VAL, or 1 if VAL is 0. */ __NORETURN void -__longjmp (__jmp_buf env, int val) +__longjmp (const __jmp_buf env, int val) { /* This restores the FP and SP that setjmp's caller had, and puts the return address into A0 and VAL into D0. */ -- 2.7.4