diff options
author | rwatson <rwatson@FreeBSD.org> | 2004-10-23 15:12:34 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2004-10-23 15:12:34 +0000 |
commit | c00410266c9d88a8c5d7ed54b642a4966dad1c4c (patch) | |
tree | 3c5c3b4ebe106fb615080d04c45d2c38cb9bf26e /sys/security/mac_test/mac_test.c | |
parent | c56bf3580a7c88307d2ca15e92a5271a3bb2b8bb (diff) | |
download | FreeBSD-src-c00410266c9d88a8c5d7ed54b642a4966dad1c4c.zip FreeBSD-src-c00410266c9d88a8c5d7ed54b642a4966dad1c4c.tar.gz |
/%x/%s/ -- mismerged DEBUGGER() printf() format stirng from the
TrustedBSD branch.
Submitted by: bde
Diffstat (limited to 'sys/security/mac_test/mac_test.c')
-rw-r--r-- | sys/security/mac_test/mac_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/mac_test/mac_test.c b/sys/security/mac_test/mac_test.c index 5e4a1ea..724409e 100644 --- a/sys/security/mac_test/mac_test.c +++ b/sys/security/mac_test/mac_test.c @@ -224,7 +224,7 @@ SYSCTL_INT(_security_mac_test, OID_AUTO, internalize_count, CTLFLAG_RD, #ifdef KDB #define DEBUGGER(x) kdb_enter(x) #else -#define DEBUGGER(x) printf("mac_test: %x\n", (x)) +#define DEBUGGER(x) printf("mac_test: %s\n", (x)) #endif /* |