commit ccf7e5ad7eb80a90cc3a33994c74b3203df17916
parent c57f68566a52d12f0fbfdfcfcfbf76aad861eb24
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 28 Oct 2017 10:45:39 -0400
Merge pull request #1441 from ptMuta/master
Removed trailing comma from swaybar click event json
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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) {
json_object_object_add(event_json, "x", json_object_new_int(x));
json_object_object_add(event_json, "y", json_object_new_int(y));
- int len = snprintf(event_buff, sizeof(event_buff), "%s,\n", json_object_to_json_string(event_json));
+ int len = snprintf(event_buff, sizeof(event_buff), "%s\n", json_object_to_json_string(event_json));
json_object_put(event_json);