diff options
| author | Richard Brooksby | 2013-05-08 16:21:12 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2013-05-08 16:21:12 +0100 |
| commit | 07f446a4502af8891d4e074328bba74134f5487c (patch) | |
| tree | 4006e8cc1c0ff6328fc09fa2939244853bcfba64 /mps/code/poolabs.c | |
| parent | f774413584de082d8cc8adc899c6ad9376138702 (diff) | |
| download | emacs-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.c | 3 |
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 | ||
| 197 | Res PoolTrivInit(Pool pool, va_list args) | 197 | Res 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 | } |