diff options
author | rwatson <rwatson@FreeBSD.org> | 2009-06-27 15:03:50 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2009-06-27 15:03:50 +0000 |
commit | 053703e8be8764474fabc397d09fab1b408e36b1 (patch) | |
tree | 3090222d7466a565b87d13f9e3cc9db1916e653a /sys/amd64 | |
parent | da78c9e4a2e1689a4d400553bb5f6aa0537c5f49 (diff) | |
download | FreeBSD-src-053703e8be8764474fabc397d09fab1b408e36b1.zip FreeBSD-src-053703e8be8764474fabc397d09fab1b408e36b1.tar.gz |
Catch missed AUDIT_ARG() -> AUDIT_ARG_CMD() on amd64.
Submitted by: Florian Smeets <flo at kasimir.com>
Approved by: re (kib) (implicit)
MFC after: 1 week
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/sys_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c index bfc7c91..c01ead2 100644 --- a/sys/amd64/amd64/sys_machdep.c +++ b/sys/amd64/amd64/sys_machdep.c @@ -170,7 +170,7 @@ sysarch(td, uap) * XXXKIB check that the BSM generation code knows to encode * the op argument. */ - AUDIT_ARG(cmd, uap->op); + AUDIT_ARG_CMD(uap->op); switch (uap->op) { case I386_GET_IOPERM: case I386_SET_IOPERM: |