updated Readme

This commit is contained in:
vurtun 2015-05-04 09:25:03 +02:00
parent ae6bbd2fb3
commit 2eebb92bd5
1 changed files with 2 additions and 2 deletions

View File

@ -325,9 +325,9 @@ while (1) {
const struct gui_command *cmd = gui_list_begin(&list);
while (cmd) {
/* execute command */
cmd = cmd->next;
cmd = gui_list_next(&list, cmd);
}
cmd = gui_list_next(&list, cmd);
iter = iter->next;
}
}
```