aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/poolabs.c
diff options
context:
space:
mode:
authorRichard Brooksby2013-05-08 16:21:12 +0100
committerRichard Brooksby2013-05-08 16:21:12 +0100
commit07f446a4502af8891d4e074328bba74134f5487c (patch)
tree4006e8cc1c0ff6328fc09fa2939244853bcfba64 /mps/code/poolabs.c
parentf774413584de082d8cc8adc899c6ad9376138702 (diff)
downloademacs-07f446a4502af8891d4e074328bba74134f5487c.tar.gz
emacs-07f446a4502af8891d4e074328bba74134f5487c.zip
Converting pools to use keyword arguments, mostly, and so far inconsistently, but at least it compiles.
Copied from Perforce Change: 181635 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/poolabs.c')
-rw-r--r--mps/code/poolabs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mps/code/poolabs.c b/mps/code/poolabs.c
index e3e45b7480c..1456ec66143 100644
--- a/mps/code/poolabs.c
+++ b/mps/code/poolabs.c
@@ -194,9 +194,10 @@ void PoolTrivFinish(Pool pool)
194 NOOP; 194 NOOP;
195} 195}
196 196
197Res PoolTrivInit(Pool pool, va_list args) 197Res PoolTrivInit(Pool pool, ArgList args)
198{ 198{
199 AVERT(Pool, pool); 199 AVERT(Pool, pool);
200 AVER(ArgListCheck(args));
200 UNUSED(args); 201 UNUSED(args);
201 return ResOK; 202 return ResOK;
202} 203}