summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2001-05-08 19:40:55 +0000
committerfgsch <fgsch@openbsd.org>2001-05-08 19:40:55 +0000
commit33fa236e540bcda76e1d2bd402b57d45c525cb60 (patch)
treede4c8dce3569e116de78901a04b5a55038721b8c
parentIn extent_alloc_subregion1, be sure that the region returned don't run (diff)
downloadwireguard-openbsd-33fa236e540bcda76e1d2bd402b57d45c525cb60.tar.xz
wireguard-openbsd-33fa236e540bcda76e1d2bd402b57d45c525cb60.zip
correct 1 printf.
-rw-r--r--sys/kern/subr_extent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_extent.c b/sys/kern/subr_extent.c
index c853908984f..dac25fa6928 100644
--- a/sys/kern/subr_extent.c
+++ b/sys/kern/subr_extent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_extent.c,v 1.13 2001/05/08 19:29:37 fgsch Exp $ */
+/* $OpenBSD: subr_extent.c,v 1.14 2001/05/08 19:40:55 fgsch Exp $ */
/* $NetBSD: subr_extent.c,v 1.7 1996/11/21 18:46:34 cgd Exp $ */
/*-
@@ -540,8 +540,8 @@ extent_alloc_subregion1(ex, substart, subend, size, alignment, skew, boundary,
panic("extent_alloc_subregion: bad alignment");
if (boundary && (boundary < size)) {
printf(
- "extent_alloc_subregion: extent `%s', size 0x%lx,
- boundary 0x%lx\n", ex->ex_name, size, boundary);
+ "extent_alloc_subregion: extent `%s', size 0x%lx, "
+ "boundary 0x%lx\n", ex->ex_name, size, boundary);
panic("extent_alloc_subregion: bad boundary");
}
#endif