aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2022-02-23 16:31:51 +0000
committerMark Johnston <markj@FreeBSD.org>2022-02-23 16:41:23 +0000
commit1ef441f69933dd3246c9b563c0c8f328e474b359 (patch)
treecd62900e533fb8fd5793e4584966e2917f7bc2a6
parent2997ab002e0c3430aff00c8b6f6b0c44c6707bd7 (diff)
downloadsrc-1ef441f69933dd3246c9b563c0c8f328e474b359.tar.gz
src-1ef441f69933dd3246c9b563c0c8f328e474b359.zip
libdtrace: Add a missing newline to an error message
MFC after: 1 week Sponsored by: The FreeBSD Foundation
-rw-r--r--cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c2
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));
}