Date: Wed, 18 Mar 2015 02:29:52 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280201 - stable/10/cddl/contrib/opensolaris/tools/ctf/cvt Message-ID: <201503180229.t2I2TqWR064919@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Wed Mar 18 02:29:51 2015 New Revision: 280201 URL: https://svnweb.freebsd.org/changeset/base/280201 Log: MFC r280125: Add a missing format string argument. PR: 197391 Modified: stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Directory Properties: stable/10/ (props changed) Modified: stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c ============================================================================== --- stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 02:29:00 2015 (r280200) +++ stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 02:29:51 2015 (r280201) @@ -492,7 +492,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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503180229.t2I2TqWR064919>