diff options
| author | Richard Brooksby | 2012-03-27 18:12:52 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-03-27 18:12:52 +0100 |
| commit | ecb147b98f04d2bf193da1a874ea2f2392bf0e66 (patch) | |
| tree | ed6cd1ed2f453b2a4448bc414f4554b544a82792 /mps/code/pool.c | |
| parent | 382d044e970ec1beae9593d6a3ae22156e53a8a4 (diff) | |
| download | emacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.tar.gz emacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.zip | |
Consistently passing closure sizes as size_t and not casting back and forth to size or anything else.
Copied from Perforce
Change: 177817
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/pool.c')
| -rw-r--r-- | mps/code/pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/pool.c b/mps/code/pool.c index 509c5a52552..e2578cf3497 100644 --- a/mps/code/pool.c +++ b/mps/code/pool.c | |||
| @@ -482,7 +482,7 @@ void PoolTraceEnd(Pool pool, Trace trace) | |||
| 482 | /* PoolWalk -- walk objects in this segment */ | 482 | /* PoolWalk -- walk objects in this segment */ |
| 483 | 483 | ||
| 484 | void PoolWalk(Pool pool, Seg seg, FormattedObjectsStepMethod f, | 484 | void PoolWalk(Pool pool, Seg seg, FormattedObjectsStepMethod f, |
| 485 | void *p, Size s) | 485 | void *p, size_t s) |
| 486 | { | 486 | { |
| 487 | AVERT(Pool, pool); | 487 | AVERT(Pool, pool); |
| 488 | AVERT(Seg, seg); | 488 | AVERT(Seg, seg); |