Merge: doc: fixed some typos and other misc. corrections
[nit.git] / clib / gc_static_objects_list.c
index 662967a..baa77c8 100644 (file)
 
 #include "gc_static_objects_list.h"
 
-void GC_List_Init (GC_List * list){
+void GC_List_Init(GC_List *list) {
        list->top = NULL;
        list->size = 0;
 }
 
-int GC_List_Push (GC_List * list, val_t *pointer){
+int GC_List_Push(GC_List *list, val_t *pointer) {
        GC_static_object *newElement;
-       if ((newElement = (GC_static_object *) malloc (sizeof (GC_static_object))) == NULL)
+       newElement = (GC_static_object*)malloc(sizeof(GC_static_object));
+       if (newElement == NULL)
                return -1;
 
        newElement->pointer = pointer;