PERFORCE change 91007 for review
Robert Watson
rwatson at FreeBSD.org
Fri Feb 3 23:48:01 GMT 2006
http://perforce.freebsd.org/chv.cgi?CH=91007
Change 91007 by rwatson at rwatson_peppercorn on 2006/02/03 23:47:45
Fix INVARIANTS build on amd64.
Submitted by: mlaier
Affected files ...
.. //depot/projects/trustedbsd/audit3/sys/security/audit/audit_arg.c#11 edit
Differences ...
==== //depot/projects/trustedbsd/audit3/sys/security/audit/audit_arg.c#11 (text+ko) ====
@@ -710,9 +710,9 @@
* XXXAUDIT: Witness warning for possible sleep here?
*/
KASSERT((flag == ARG_UPATH1) || (flag == ARG_UPATH2),
- ("audit_arg_upath: flag %llu", flag));
+ ("audit_arg_upath: flag %llu", (unsigned long long)flag));
KASSERT((flag != ARG_UPATH1) || (flag != ARG_UPATH2),
- ("audit_arg_upath: flag %llu", flag));
+ ("audit_arg_upath: flag %llu", (unsigned long long)flag));
ar = currecord();
if (ar == NULL)
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list