1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 00:34:17 -07:00

Fixup warnings of unused variables. now compiles.

Copied from Perforce
 Change: 178793
 ServerID: perforce.ravenbrook.com
This commit is contained in:
David Lovemore 2012-07-31 15:00:21 +01:00
parent 07d320c057
commit edef673fc0
2 changed files with 3 additions and 3 deletions

View file

@ -643,8 +643,8 @@ static void SNCWalk(Pool pool, Seg seg, FormattedObjectsStepMethod f,
limit = SegLimit(seg);
while(object < limit) {
(*f)(object, pool->format, pool, p, s);
nextObject = (*pool->format->skip)(object);
(*f)(object, format, pool, p, s);
nextObject = (*format->skip)(object);
AVER(nextObject > object);
object = nextObject;
}

View file

@ -210,7 +210,7 @@ failInit:
static void SegFinish(Seg seg)
{
Arena arena;
Addr addr, base, limit;
Addr addr, limit;
Tract tract;
SegClass class;