remove debug print
This commit is contained in:
parent
68ff2eb3d2
commit
7a651f9ff5
1 changed files with 1 additions and 3 deletions
|
@ -75,11 +75,9 @@ void keyparse(ParseToken *token)
|
|||
GList *strchain = NULL;
|
||||
|
||||
/* build a list of just char*'s */
|
||||
for (it = chain; it; it = it->next) {
|
||||
for (it = chain; it; it = it->next)
|
||||
strchain = g_list_append(strchain,
|
||||
((ParseToken*)it->data)->data.identifier);
|
||||
g_print("Chain %s\n", ((ParseToken*)it->data)->data.identifier);
|
||||
}
|
||||
|
||||
/* these use the argument */
|
||||
if (action->func == action_execute || action->func == action_restart)
|
||||
|
|
Loading…
Reference in a new issue