From: Ivan Maidanski Date: Thu, 8 Feb 2018 08:51:00 +0000 (+0300) Subject: Fix arg type of continue_reclaim prototype after the definition update X-Git-Tag: v8.0.0~360 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6128406e4f4471055924d7296e3484c3e04f324c;p=platform%2Fupstream%2Flibgc.git Fix arg type of continue_reclaim prototype after the definition update (fix of commit e794f1e) * include/private/gc_priv.h (GC_continue_reclaim): Change type of sz argument from size_t to word (matching the function definition). --- diff --git a/include/private/gc_priv.h b/include/private/gc_priv.h index 7364daf..2f6d708 100644 --- a/include/private/gc_priv.h +++ b/include/private/gc_priv.h @@ -1933,7 +1933,7 @@ GC_INNER void GC_start_reclaim(GC_bool abort_if_found); /* TRUE) report them. */ /* Sweeping of small object pages is */ /* largely deferred. */ -GC_INNER void GC_continue_reclaim(size_t sz, int kind); +GC_INNER void GC_continue_reclaim(word sz, int kind); /* Sweep pages of the given size and */ /* kind, as long as possible, and */ /* as long as the corr. free list is */