From fc8359fafbe8f3aee572c570770fe9b4ecad88fd Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 26 Mar 2023 15:30:28 +0200 Subject: [PATCH] Fix missing line break in initialization message --- src/plugin/bridges/common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugin/bridges/common.h b/src/plugin/bridges/common.h index d8dba3be..acebf30d 100644 --- a/src/plugin/bridges/common.h +++ b/src/plugin/bridges/common.h @@ -207,7 +207,8 @@ class PluginBridge { << " With a low memory locking limit, yabridge may not be" << std::endl; init_msg << " be able to lock its shared memory audio " - "buffers into"; + "buffers into" + << std::endl; init_msg << " main memory. Performance may be degraded until " "you fix " << std::endl;