summaryrefslogtreecommitdiff
path: root/openbox/parse.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-04 20:19:12 +0000
committerDana Jansens <danakj@orodu.net>2003-04-04 20:19:12 +0000
commit68ff2eb3d2d7874e780000143cbee9a8e7c2e57f (patch)
treeeed6077d7eedb92fac0c8c3c51c56577be15f82e /openbox/parse.c
parentc8ff993e08e73f030a2efdb4f01c5f65464555e7 (diff)
add the keyboard plugin into the build systems
keyboard bindings are parsed from the rc file
Diffstat (limited to 'openbox/parse.c')
-rw-r--r--openbox/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/parse.c b/openbox/parse.c
index 488d34db..80a918cb 100644
--- a/openbox/parse.c
+++ b/openbox/parse.c
@@ -33,7 +33,7 @@ void parse_reg_section(char *section, ParseFunc func)
void parse_free_token(ParseToken *token)
{
- GSList *it;
+ GList *it;
switch (token->type) {
case TOKEN_STRING:
@@ -47,7 +47,7 @@ void parse_free_token(ParseToken *token)
parse_free_token(it->data);
g_free(it->data);
}
- g_slist_free(token->data.list);
+ g_list_free(token->data.list);
break;
case TOKEN_REAL:
case TOKEN_INTEGER: