diff options
author | Mark Johnston <markj@FreeBSD.org> | 2022-02-23 16:31:51 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2022-02-23 16:41:23 +0000 |
commit | 1ef441f69933dd3246c9b563c0c8f328e474b359 (patch) | |
tree | cd62900e533fb8fd5793e4584966e2917f7bc2a6 /cddl/contrib/opensolaris/lib/libdtrace | |
parent | 2997ab002e0c3430aff00c8b6f6b0c44c6707bd7 (diff) |
libdtrace: Add a missing newline to an error message
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'cddl/contrib/opensolaris/lib/libdtrace')
-rw-r--r-- | cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } |