fixed typo

This commit is contained in:
vurtun 2015-05-17 23:03:39 +02:00
parent 2c42c38bd6
commit 9e607406ba
1 changed files with 2 additions and 2 deletions

View File

@ -402,7 +402,7 @@ while (1) {
struct gui_panel_hook *iter;
gui_stack_for_each(iter, &stack) {
const struct gui_command *cmd
gui_list_for_each(cmd, gui_hook_list(h)) {
gui_list_for_each(cmd, gui_hook_list(iter)) {
/* execute command */
}
}
@ -465,7 +465,7 @@ while (1) {
struct gui_panel_hook *iter;
gui_stack_for_each(iter, &stack) {
const struct gui_command *cmd
gui_list_for_each(cmd, gui_hook_list(h)) {
gui_list_for_each(cmd, gui_hook_list(iter)) {
/* execute command */
}
}