Two DPRINTFs in sys/net/if_wg.c are missing a newline.

diff --git if_wg.c if_wg.c
index 13c48f42c54..a3efd577dbc 100644
--- if_wg.c
+++ if_wg.c
@@ -2156,7 +2156,7 @@ wg_output(struct ifnet *ifp, struct mbuf *m, struct 
sockaddr *sa,
        }
 
        if (m->m_pkthdr.ph_loopcnt++ > M_MAXLOOP) {
-               DPRINTF(sc, "Packet looped");
+               DPRINTF(sc, "Packet looped\n");
                ret = ELOOP;
                goto error;
        }
@@ -2169,7 +2169,7 @@ wg_output(struct ifnet *ifp, struct mbuf *m, struct 
sockaddr *sa,
         * another aip_lookup in wg_qstart, or refcnting as mentioned before.
         */
        if (m->m_pkthdr.pf.delay > 0) {
-               DPRINTF(sc, "PF Delay Unsupported");
+               DPRINTF(sc, "PF Delay Unsupported\n");
                ret = EOPNOTSUPP;
                goto error;
        }

Reply via email to