supporess maybe-uninitialized warning
This commit is contained in:
parent
781bd19d89
commit
136680e8d2
2
gc.c
2
gc.c
|
@ -706,7 +706,7 @@ gc_sweep_page(pic_state *pic, struct heap_page *page)
|
||||||
#else
|
#else
|
||||||
static union header *NIL = NULL;
|
static union header *NIL = NULL;
|
||||||
#endif
|
#endif
|
||||||
union header *bp, *p, *s = NIL, *t;
|
union header *bp, *p, *s = NIL, *t = NIL;
|
||||||
|
|
||||||
#if GC_DEBUG
|
#if GC_DEBUG
|
||||||
int c = 0;
|
int c = 0;
|
||||||
|
|
Loading…
Reference in New Issue