Merge drd/ changes from branches/MESSAGING_TIDYUP r10464.
See trunk r10465 commit message for details.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10466 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/drd/drd_suppression.c b/drd/drd_suppression.c
index 8b7a55e..da01f15 100644
--- a/drd/drd_suppression.c
+++ b/drd/drd_suppression.c
@@ -61,7 +61,7 @@
 {
    if (DRD_(s_trace_suppression))
    {
-      VG_(message)(Vg_DebugMsg, "start suppression of 0x%lx sz %ld (%s)",
+      VG_(message)(Vg_DebugMsg, "start suppression of 0x%lx sz %ld (%s)\n",
                    a1, a2 - a1, reason);
    }
 
@@ -74,7 +74,7 @@
 {
    if (DRD_(s_trace_suppression))
    {
-      VG_(message)(Vg_DebugMsg, "finish suppression of 0x%lx sz %ld",
+      VG_(message)(Vg_DebugMsg, "finish suppression of 0x%lx sz %ld\n",
                    a1, a2 - a1);
       VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);   
    }
@@ -82,7 +82,7 @@
    tl_assert(a1 < a2);
    if (! DRD_(is_suppressed)(a1, a2))
    {
-      VG_(message)(Vg_DebugMsg, "?? [0x%lx,0x%lx[ not suppressed ??", a1, a2);
+      VG_(message)(Vg_DebugMsg, "?? [0x%lx,0x%lx[ not suppressed ??\n", a1, a2);
       VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
       tl_assert(False);
    }
@@ -148,7 +148,7 @@
          {
             VG_(message)(Vg_DebugMsg,
                          "stop_using_mem(0x%lx, %ld) finish suppression of"
-                         " 0x%lx", a1, a2 - a1, b);
+                         " 0x%lx\n", a1, a2 - a1, b);
          }
       }
    }