aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--swaybar/status_line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/status_line.c b/swaybar/status_line.c
index cc324fdb..87e90caf 100644
--- a/swaybar/status_line.c
+++ b/swaybar/status_line.c
@@ -440,7 +440,7 @@ bool status_line_mouse_event(struct bar *bar, int x, int y, uint32_t button) {
440 json_object_object_add(event_json, "x", json_object_new_int(x)); 440 json_object_object_add(event_json, "x", json_object_new_int(x));
441 json_object_object_add(event_json, "y", json_object_new_int(y)); 441 json_object_object_add(event_json, "y", json_object_new_int(y));
442 442
443 int len = snprintf(event_buff, sizeof(event_buff), "%s,\n", json_object_to_json_string(event_json)); 443 int len = snprintf(event_buff, sizeof(event_buff), "%s\n", json_object_to_json_string(event_json));
444 444
445 json_object_put(event_json); 445 json_object_put(event_json);
446 446