Date: Wed, 2 Mar 2022 13:59:37 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: afc0a407720b - stable/13 - libdtrace: Add a missing newline to an error message Message-ID: <202203021359.222DxbTk020506@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=afc0a407720b3dccda677ce5d601ffcc6be83252 commit afc0a407720b3dccda677ce5d601ffcc6be83252 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-02-23 16:31:51 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-03-02 13:58:47 +0000 libdtrace: Add a missing newline to an error message Sponsored by: The FreeBSD Foundation (cherry picked from commit 1ef441f69933dd3246c9b563c0c8f328e474b359) --- cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c index 482da920b754..f55d488f4d91 100644 --- a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c +++ b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c @@ -1470,7 +1470,7 @@ alloc: dtyp->dty_dst, ctf_lookup_by_name(dmp->dm_ctfp, dtyp->dty_src)) == CTF_ERR) { dt_dprintf("failed to add typedef %s %s to D " - "container: %s", dtyp->dty_src, dtyp->dty_dst, + "container: %s\n", dtyp->dty_src, dtyp->dty_dst, ctf_errmsg(ctf_errno(dmp->dm_ctfp))); return (set_open_errno(dtp, errp, EDT_CTF)); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203021359.222DxbTk020506>