From d08b9eaa8d4735f12ee8e26f1cae646721459264 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 21 Mar 2021 22:31:40 +0100 Subject: [PATCH] Fix debug message: missing newline --- libs/pbd/pool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc index 3f61a786fe..e0028d3055 100644 --- a/libs/pbd/pool.cc +++ b/libs/pbd/pool.cc @@ -62,7 +62,7 @@ Pool::Pool (string n, unsigned long item_size, unsigned long nitems) Pool::~Pool () { - DEBUG_TRACE (DEBUG::Pool, string_compose ("Pool: '%1' max: %2 / %3", name(), max_usage, total())); + DEBUG_TRACE (DEBUG::Pool, string_compose ("Pool: '%1' max: %2 / %3\n", name(), max_usage, total())); free (block); }