From 6128406e4f4471055924d7296e3484c3e04f324c Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 8 Feb 2018 11:51:00 +0300 Subject: [PATCH] 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). --- include/private/gc_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.7.4