From: Ivan Maidanski Date: Fri, 21 Jul 2017 17:59:55 +0000 (+0300) Subject: Fix GC_incremental declaration/definition type mismatch X-Git-Tag: v8.0.0~624 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=879808085fb4839493397bb42900e2e1aabc773e;p=platform%2Fupstream%2Flibgc.git Fix GC_incremental declaration/definition type mismatch * 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). --- diff --git a/alloc.c b/alloc.c index ebbfb3e..885d651 100644 --- a/alloc.c +++ b/alloc.c @@ -64,7 +64,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