diff options
author | mav <mav@FreeBSD.org> | 2010-07-24 10:07:17 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2010-07-24 10:07:17 +0000 |
commit | f77703411895765bbe759390e298c10cfe3b4d57 (patch) | |
tree | 5abcb8d327204e85aaf7d464e1dbc5700f1b0e50 /sys | |
parent | 8665304c8dd0e637e8aea8ec80b3dd93e52ff219 (diff) | |
download | FreeBSD-src-f77703411895765bbe759390e298c10cfe3b4d57.zip FreeBSD-src-f77703411895765bbe759390e298c10cfe3b4d57.tar.gz |
Remove extra commas from KTR_EVENT4() macro to match number of CTR6() args.
Comparing to other macros there should be strings concatenation, not a
separate arguments.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/ktr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/ktr.h b/sys/sys/ktr.h index 340f382..3b78101 100644 --- a/sys/sys/ktr.h +++ b/sys/sys/ktr.h @@ -188,7 +188,7 @@ void ktr_tracepoint(u_int mask, const char *file, int line, ident, edat, (v0), (v1), (v2)) #define KTR_EVENT4(m, egroup, ident, etype, edat, \ a0, v0, a1, v1, a2, v2, a3, v3) \ - CTR6(m,KTR_EFMT(egroup, ident, etype) a0 ", " a1 ", " a2, ", ", a3,\ + CTR6(m,KTR_EFMT(egroup, ident, etype) a0 ", " a1 ", " a2 ", " a3,\ ident, edat, (v0), (v1), (v2), (v3)) /* |