diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2015-03-18 02:29:00 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2015-03-18 02:29:00 +0000 |
| commit | 5588d565a22578ba1c9b95e816d5dabcbf771773 (patch) | |
| tree | 4d4daf90e3533da6fd38a8980e923f6e147fa02d /cddl/contrib | |
| parent | fb276c7791326949fc086b9304b4fdd38a1b7588 (diff) | |
MFC r280125:
Add a missing format string argument.
PR: 197391
Notes
svn path=/stable/9/; revision=280200
Diffstat (limited to 'cddl/contrib')
| -rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c b/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c index e3ec1e1bf0cf..5d22871a0579 100644 --- a/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c +++ b/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c @@ -411,7 +411,7 @@ write_type(void *arg1, void *arg2) if (i > CTF_MAX_VLEN) { terminate("function %s has too many args: %d > %d\n", - i, CTF_MAX_VLEN); + tdesc_name(tp), i, CTF_MAX_VLEN); } ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FUNCTION, isroot, i); |
