summaryrefslogtreecommitdiff
path: root/glist.c
diff options
context:
space:
mode:
Diffstat (limited to 'glist.c')
-rw-r--r--glist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glist.c b/glist.c
index 9ca754a45..8c2201069 100644
--- a/glist.c
+++ b/glist.c
@@ -165,8 +165,8 @@ g_list_free (GList *list)
last_node->prev = NULL;
last_node = last_node->next;
}
- last_node->data = NULL
- last_node->prev = NULL
+ last_node->data = NULL;
+ last_node->prev = NULL;
#else /* !ENABLE_GC_FRIENDLY */
list->data = list->next;
#endif /* ENABLE_GC_FRIENDLY */