From 289240840ad57be412c6163e28273e10a8c62b9e Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 19 Dec 2023 06:58:36 +0000 Subject: [PATCH] the 4th argument of pinsyscalls() is now "number of pin elements", not "size of the storage of the pin elements" --- sys/kern/syscalls.master | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 31c051c94ac..3770653f708 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.254 2023/12/12 15:30:55 deraadt Exp $ +; $OpenBSD: syscalls.master,v 1.255 2023/12/19 06:58:36 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -307,7 +307,7 @@ 156 OBSOL ogetdirentries 157 OBSOL statfs25 158 STD { int sys_pinsyscalls(void *base, size_t len, \ - uint *pins, size_t pinslen); } + u_int *pins, int npins); } 159 STD { int sys_mimmutable(void *addr, size_t len); } 160 STD { int sys_waitid(int idtype, id_t id, \ siginfo_t *info, int options); } -- 2.20.1