aboutsummaryrefslogtreecommitdiffstats
path: root/sway/main.c
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-12-08 23:55:14 +0000
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-12-09 01:15:38 +0000
commitc8776fac4232f9faab0a78ef3e18dc4366496421 (patch)
tree028fbc584d233a7a934feb0b6807c9a988c8e7f1 /sway/main.c
parentlist.c: Remove list_foreach (diff)
downloadsway-c8776fac4232f9faab0a78ef3e18dc4366496421.tar.gz
sway-c8776fac4232f9faab0a78ef3e18dc4366496421.tar.zst
sway-c8776fac4232f9faab0a78ef3e18dc4366496421.zip
Cleanup list code
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/main.c b/sway/main.c
index a74183fe..f70e751d 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -393,13 +393,12 @@ int main(int argc, char **argv) {
393 while (config->cmd_queue->length) { 393 while (config->cmd_queue->length) {
394 char *line = config->cmd_queue->items[0]; 394 char *line = config->cmd_queue->items[0];
395 list_t *res_list = execute_command(line, NULL, NULL); 395 list_t *res_list = execute_command(line, NULL, NULL);
396 while (res_list->length) { 396 for (int i = 0; i < res_list->length; ++i) {
397 struct cmd_results *res = res_list->items[0]; 397 struct cmd_results *res = res_list->items[i];
398 if (res->status != CMD_SUCCESS) { 398 if (res->status != CMD_SUCCESS) {
399 wlr_log(WLR_ERROR, "Error on line '%s': %s", line, res->error); 399 wlr_log(WLR_ERROR, "Error on line '%s': %s", line, res->error);
400 } 400 }
401 free_cmd_results(res); 401 free_cmd_results(res);
402 list_del(res_list, 0);
403 } 402 }
404 list_free(res_list); 403 list_free(res_list);
405 free(line); 404 free(line);