1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-29 10:11:58 -07:00

Correcting return type of nreclaim to match changes in other pools.

Copied from Perforce
 Change: 190085
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2016-03-01 02:21:37 +00:00
parent 406959d43c
commit 7db37748e3

View file

@ -235,7 +235,7 @@ static Res NFix(Pool pool, ScanState ss, Seg seg, Ref *refIO)
/* NReclaim -- reclaim method for class N */
static void NReclaim(Pool pool, Trace trace, Seg seg)
static Bool NReclaim(Pool pool, Trace trace, Seg seg)
{
PoolN poolN;
@ -246,6 +246,8 @@ static void NReclaim(Pool pool, Trace trace, Seg seg)
AVERT(Trace, trace);
AVERT(Seg, seg);
/* all unmarked and white objects reclaimed */
return FALSE; /* segment wasn't deleted */
}