Module Name: src
Committed By: uwe
Date: Tue Feb 20 00:09:31 UTC 2024
Modified Files:
src/lib/libc/arch/sparc/gen: longjmp.c
Log Message:
fix typo in comment
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/sparc/gen/longjmp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/arch/sparc/gen/longjmp.c
diff -u src/lib/libc/arch/sparc/gen/longjmp.c:1.4 src/lib/libc/arch/sparc/gen/longjmp.c:1.5
--- src/lib/libc/arch/sparc/gen/longjmp.c:1.4 Sun Sep 3 21:41:45 2023
+++ src/lib/libc/arch/sparc/gen/longjmp.c Tue Feb 20 00:09:31 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: longjmp.c,v 1.4 2023/09/03 21:41:45 mrg Exp $ */
+/* $NetBSD: longjmp.c,v 1.5 2024/02/20 00:09:31 uwe Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -47,7 +47,7 @@
/*
* check that offsets in the above structures match their usage in the
* setjmp() side of this setup. a jmp_buf is the 12-word contents of
- * the sigcontexst structure, plus 2 more words for g4 and g7.
+ * the sigcontext structure, plus 2 more words for g4 and g7.
*/
__CTASSERT(_SIZEOF_SC + _JB_G4 == offsetof(struct __jmp_buf,regs.g4));
__CTASSERT(_SIZEOF_SC + _JB_G7 == offsetof(struct __jmp_buf,regs.g7));