]> Dogcows Code - chaz/openbox/blobdiff - openbox/parse.c
add the keyboard plugin into the build systems
[chaz/openbox] / openbox / parse.c
index 488d34dbee3166dda80b915303180373456a278b..80a918cb89e8e76140acfcf6d952e967fbf675b8 100644 (file)
@@ -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:
This page took 0.020016 seconds and 4 git commands to generate.