From: Steve Reinhardt Date: Tue, 15 Jul 2008 18:38:51 +0000 (-0400) Subject: Add missing newlines to Bus DPRINTFs. X-Git-Tag: m5_2.0_beta6~82 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6262e0d9095215effc8d73297f3eedfddc1c2796;p=gem5.git Add missing newlines to Bus DPRINTFs. --- diff --git a/src/mem/bus.cc b/src/mem/bus.cc index 606402a1e..41e9f0ac9 100644 --- a/src/mem/bus.cc +++ b/src/mem/bus.cc @@ -331,10 +331,10 @@ Bus::findPort(Addr addr) if (responderSet) { panic("Unable to find destination for addr (user set default " - "responder): %#llx", addr); + "responder): %#llx\n", addr); } else { DPRINTF(Bus, "Unable to find destination for addr: %#llx, will use " - "default port", addr); + "default port\n", addr); return defaultId; }