]> granicus.if.org Git - gc/commitdiff
Fix GC_incremental declaration/definition type mismatch
authorIvan Maidanski <ivmai@mail.ru>
Fri, 21 Jul 2017 17:59:55 +0000 (20:59 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 8 Aug 2017 07:45:57 +0000 (10:45 +0300)
* alloc.c [!GC_DISABLE_INCREMENTAL] (GC_incremental): Change variable
type from int to GC_bool (to match that of the declaration in
gc_priv.h).

alloc.c

diff --git a/alloc.c b/alloc.c
index 894c79830163ab1a3b5b6788f07f61cb988ffb40..2dc37abb7af4852768d57d3836353aca9a3e2073 100644 (file)
--- a/alloc.c
+++ b/alloc.c
@@ -61,7 +61,7 @@ word GC_non_gc_bytes = 0;  /* Number of bytes not intended to be collected */
 word GC_gc_no = 0;
 
 #ifndef GC_DISABLE_INCREMENTAL
-  GC_INNER int GC_incremental = 0;      /* By default, stop the world.  */
+  GC_INNER GC_bool GC_incremental = FALSE; /* By default, stop the world. */
 #endif
 
 #ifdef THREADS