summaryrefslogtreecommitdiffstats
path: root/swaybar/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaybar/main.c')
-rw-r--r--swaybar/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index 1cc71c66..fc44d3af 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -136,7 +136,7 @@ void ipc_update_workspaces() {
136 for (i = 0; i < json_object_array_length(results); ++i) { 136 for (i = 0; i < json_object_array_length(results); ++i) {
137 json_object *ws_json = json_object_array_get_idx(results, i); 137 json_object *ws_json = json_object_array_get_idx(results, i);
138 json_object *num, *name, *visible, *focused, *out, *urgent; 138 json_object *num, *name, *visible, *focused, *out, *urgent;
139 if (ws_json) { 139 if (!ws_json) {
140 continue; 140 continue;
141 } 141 }
142 json_object_object_get_ex(ws_json, "num", &num); 142 json_object_object_get_ex(ws_json, "num", &num);