mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* mps/code/poolawl.c (AWL0Init): Stick to C89.
This commit is contained in:
parent
1fab3ccc3c
commit
a7c2557dfc
1 changed files with 2 additions and 2 deletions
|
|
@ -1426,13 +1426,13 @@ static Bool AWL0PoolCheck(AWL0Pool awl0)
|
|||
static Res AWL0Init(Pool pool, Arena arena, PoolClass klass,
|
||||
ArgList args)
|
||||
{
|
||||
AWL0Pool awl0;
|
||||
Res res
|
||||
= NextMethod(Pool, AWL0Pool, init)(pool, arena, klass, args);
|
||||
if (res != ResOK)
|
||||
return res;
|
||||
|
||||
AWL0Pool awl0 = CouldBeA(AWL0Pool, pool);
|
||||
|
||||
awl0 = CouldBeA(AWL0Pool, pool);
|
||||
SetClassOfPoly(pool, CLASS(AWL0Pool));
|
||||
awl0->sig = AWL0Sig;
|
||||
AVERC(AWL0Pool, awl0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue