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:
parent
07d320c057
commit
edef673fc0
2 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ failInit:
|
|||
static void SegFinish(Seg seg)
|
||||
{
|
||||
Arena arena;
|
||||
Addr addr, base, limit;
|
||||
Addr addr, limit;
|
||||
Tract tract;
|
||||
SegClass class;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue