The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=1ef441f69933dd3246c9b563c0c8f328e474b359

commit 1ef441f69933dd3246c9b563c0c8f328e474b359
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2022-02-23 16:31:51 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2022-02-23 16:41:23 +0000

    libdtrace: Add a missing newline to an error message
    
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
---
 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));
                }

Reply via email to