syscalls: mprotect does not take a const

The mprotect syscall decleration is not const.  I added this one
incorrectly in a944d28d0e.

Reported by:	kib
Reviewed by:	kib, imp
This commit is contained in:
Brooks Davis 2021-11-29 22:03:00 +00:00
parent 401eec3635
commit 6d37a1670b

View File

@ -534,7 +534,7 @@
}
74 AUE_MPROTECT STD|CAPENABLED {
int mprotect(
_In_ const void *addr,
_In_ void *addr,
size_t len,
int prot
);