diff options
| author | 2001-07-05 10:00:25 +0000 | |
|---|---|---|
| committer | 2001-07-05 10:00:25 +0000 | |
| commit | 98f5fe29df64c678cff6cef1723c98f7754f5583 (patch) | |
| tree | 31233e54389868aa8609e75f48c3a80f8703b5b7 /sys/kern/subr_extent.c | |
| parent | Syntax, style, wording. (diff) | |
| download | wireguard-openbsd-98f5fe29df64c678cff6cef1723c98f7754f5583.tar.xz wireguard-openbsd-98f5fe29df64c678cff6cef1723c98f7754f5583.zip | |
Get rid of the wrapper macros around extent_alloc*1
Pass the right amount of arguments and rename them back to their right names.
Diffstat (limited to 'sys/kern/subr_extent.c')
| -rw-r--r-- | sys/kern/subr_extent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_extent.c b/sys/kern/subr_extent.c index a1663c4e083..0cc1260b059 100644 --- a/sys/kern/subr_extent.c +++ b/sys/kern/subr_extent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_extent.c,v 1.15 2001/06/22 14:14:09 deraadt Exp $ */ +/* $OpenBSD: subr_extent.c,v 1.16 2001/07/05 10:00:45 art Exp $ */ /* $NetBSD: subr_extent.c,v 1.7 1996/11/21 18:46:34 cgd Exp $ */ /*- @@ -506,7 +506,7 @@ extent_alloc_region(ex, start, size, flags) * a power of 2. */ int -extent_alloc_subregion1(ex, substart, subend, size, alignment, skew, boundary, +extent_alloc_subregion(ex, substart, subend, size, alignment, skew, boundary, flags, result) struct extent *ex; u_long substart, subend, size, alignment, skew, boundary; |
