summaryrefslogtreecommitdiff
path: root/freebsd/sys/sys/priv.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/priv.h')
-rw-r--r--freebsd/sys/sys/priv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/freebsd/sys/sys/priv.h b/freebsd/sys/sys/priv.h
index 55453f5a..3027cbf5 100644
--- a/freebsd/sys/sys/priv.h
+++ b/freebsd/sys/sys/priv.h
@@ -533,10 +533,10 @@ struct thread;
struct ucred;
#ifndef __rtems__
int priv_check(struct thread *td, int priv);
-int priv_check_cred(struct ucred *cred, int priv, int flags);
+int priv_check_cred(struct ucred *cred, int priv);
#else /* __rtems__ */
#define priv_check(td, priv) 0
-#define priv_check_cred(cred, priv, flags) 0
+#define priv_check_cred(cred, priv) 0
#endif /* __rtems__ */
#endif