supporess maybe-uninitialized warning

This commit is contained in:
Yuichi Nishiwaki 2014-09-26 15:59:28 +09:00
parent 781bd19d89
commit 136680e8d2
1 changed files with 1 additions and 1 deletions

2
gc.c
View File

@ -706,7 +706,7 @@ gc_sweep_page(pic_state *pic, struct heap_page *page)
#else
static union header *NIL = NULL;
#endif
union header *bp, *p, *s = NIL, *t;
union header *bp, *p, *s = NIL, *t = NIL;
#if GC_DEBUG
int c = 0;