From b6c78ad9c80e33f450142d5e5c03caa7eba6d4af Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 15 Jan 2016 01:29:44 +0100 Subject: [PATCH] fix OSC debug messages --- libs/surfaces/osc/osc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc index 47ef9e13c2..35c437eeed 100644 --- a/libs/surfaces/osc/osc.cc +++ b/libs/surfaces/osc/osc.cc @@ -678,7 +678,7 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_ ret = 0; } - if ((ret && _debugmode == Unhandled) || _debugmode == All) { + if ((ret && _debugmode == Unhandled)) { debugmsg (_("Unhandled OSC message"), path, types, argv, argc); } @@ -736,7 +736,7 @@ OSC::debugmsg (const char *prefix, const char *path, const char* types, lo_arg * ss << ""; break; default: - ss << ""; + ss << "< ?? >"; break; } }