From 50c5dc8df2663c935ab2f788208cfe373ae537b1 Mon Sep 17 00:00:00 2001 From: Kevin Tew Date: Wed, 5 Nov 2008 21:05:44 +0000 Subject: [PATCH] Make zero_sized const svn: r12263 --- src/mzscheme/gc2/newgc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mzscheme/gc2/newgc.c b/src/mzscheme/gc2/newgc.c index db817a29eb..86167bb394 100644 --- a/src/mzscheme/gc2/newgc.c +++ b/src/mzscheme/gc2/newgc.c @@ -294,7 +294,7 @@ unsigned long GC_gen0_alloc_page_end = 0; static struct mpage *pages[PAGE_TYPES]; /* miscellaneous variables */ -static char *zero_sized[4]; /* all 0-sized allocs get this */ +static const char *zero_sized[4]; /* all 0-sized allocs get this */ static int gc_full = 0; /* a flag saying if this is a full/major collection */ static Mark_Proc mark_table[NUMBER_OF_TAGS]; /* the table of mark procs */ static Fixup_Proc fixup_table[NUMBER_OF_TAGS]; /* the table of repair procs */