diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2021-11-29 22:02:59 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2021-11-29 22:04:41 +0000 |
commit | 33f9ea209e954cfa3a89d05b400198bf14dd7ad6 (patch) | |
tree | 3ab3d0335b04f8a8d698374ecf26b44fdf81c71a | |
parent | e0189cf66a94e1149793caf4dea17288da22a0c3 (diff) | |
download | src-33f9ea209e954cfa3a89d05b400198bf14dd7ad6.tar.gz src-33f9ea209e954cfa3a89d05b400198bf14dd7ad6.zip |
syscalls: add missing SAL annotations
freebsd7_shmctl was missing an annotation
Reviewed by: kib, imp
-rw-r--r-- | sys/kern/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 315e2692bfa1..45e4bb8d830e 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1341,7 +1341,7 @@ int shmctl( int shmid, int cmd, - _Contains_long_ struct shmid_ds_old *buf + _Inout_opt_ _Contains_long_ struct shmid_ds_old *buf ); } 230 AUE_SHMDT NOSTD { |