remove debug print

This commit is contained in:
Dana Jansens 2003-04-04 20:22:44 +00:00
parent 68ff2eb3d2
commit 7a651f9ff5

View file

@ -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)