From 018d42db8ade949fcaef39a0a63c4325d4310f9b Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Sun, 15 Jan 2023 17:32:39 +0000 Subject: [PATCH] ctl-client: Don't print "<" for events with no params It's inconsistent and doesn't seem helpful either. --- src/ctl-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctl-client.c b/src/ctl-client.c index b573c92..f9133da 100644 --- a/src/ctl-client.c +++ b/src/ctl-client.c @@ -565,7 +565,7 @@ static void print_event(struct jsonipc_request* event, unsigned flags) if (event->params) print_for_human(event->params, 1, true); else - printf("<\n"); + printf("\n"); } fflush(stdout); }