From f06a1bc9bd65ff3a34fc6fd4dc4b55056aaaaeec Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 8 Apr 2021 14:35:59 -0400 Subject: Fix crash on client disconnection --- src/event_to_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/event_to_string.cpp b/src/event_to_string.cpp index d898845..43c4eb6 100644 --- a/src/event_to_string.cpp +++ b/src/event_to_string.cpp @@ -73,7 +73,7 @@ struct EventPrinter { std::string operator()(const ClientDestructionEvent& event) { - return fmt::format(R"(Add{} {} {} port "{}" ("{}"))", event.id); + return fmt::format(R"(Remove client "{}")", event.id); } std::string operator()(const PortType port_type) -- cgit v1.2.1