summaryrefslogtreecommitdiffstats
path: root/swaybar/i3bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaybar/i3bar.c')
-rw-r--r--swaybar/i3bar.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c
index 46459e24..ed134a01 100644
--- a/swaybar/i3bar.c
+++ b/swaybar/i3bar.c
@@ -203,6 +203,9 @@ void i3bar_block_send_click(struct status_line *status,
203 json_object_object_add(event_json, "button", json_object_new_int(button)); 203 json_object_object_add(event_json, "button", json_object_new_int(button));
204 json_object_object_add(event_json, "x", json_object_new_int(x)); 204 json_object_object_add(event_json, "x", json_object_new_int(x));
205 json_object_object_add(event_json, "y", json_object_new_int(y)); 205 json_object_object_add(event_json, "y", json_object_new_int(y));
206 dprintf(status->write_fd, "%s\n", json_object_to_json_string(event_json)); 206 if (dprintf(status->write_fd, "%s\n",
207 json_object_to_json_string(event_json)) < 0) {
208 status_error(status, "[failed to write click event]");
209 }
207 json_object_put(event_json); 210 json_object_put(event_json);
208} 211}