Module Name: src
Committed By: andvar
Date: Thu Dec 7 07:10:44 UTC 2023
Modified Files:
src/common/lib/libc/misc: ubsan.c
Log Message:
s/miltiple/multiple/ in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/common/lib/libc/misc/ubsan.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libc/misc/ubsan.c
diff -u src/common/lib/libc/misc/ubsan.c:1.11 src/common/lib/libc/misc/ubsan.c:1.12
--- src/common/lib/libc/misc/ubsan.c:1.11 Sun Sep 19 10:34:06 2021
+++ src/common/lib/libc/misc/ubsan.c Thu Dec 7 07:10:44 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $ */
+/* $NetBSD: ubsan.c,v 1.12 2023/12/07 07:10:44 andvar Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -38,9 +38,9 @@
#include <sys/cdefs.h>
#if defined(_KERNEL)
-__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.12 2023/12/07 07:10:44 andvar Exp $");
#else
-__RCSID("$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $");
+__RCSID("$NetBSD: ubsan.c,v 1.12 2023/12/07 07:10:44 andvar Exp $");
#endif
#if defined(_KERNEL)
@@ -1249,7 +1249,7 @@ __ubsan_get_current_report_data(const ch
* interrupt handling etc).
*
* A proper solution would need probably a lock-free bounded queue built
- * with atomic operations with the property of miltiple consumers and
+ * with atomic operations with the property of multiple consumers and
* multiple producers. Maintaining and validating such code is not
* worth the effort.
*