1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-09 07:41:40 -07:00

Fix cast in call to mps_fix

Copied from Perforce
 Change: 18061
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gavin Matthews 1997-05-08 13:45:51 +01:00
parent e70889ca49
commit c5c7d4a13c

View file

@ -1,6 +1,6 @@
/* impl.c.mpsicv: MPSI COVERAGE TEST
*
* $HopeName: MMsrc!mpsicv.c(trunk.8) $
* $HopeName: MMsrc!mpsicv.c(trunk.9) $
* Copyright (C) 1996 Harlequin Group, all rights reserved
*/
@ -98,7 +98,7 @@ static void ap_create_v_test(mps_pool_t pool, mps_rank_t rank, ...)
static mps_res_t root_single(mps_ss_t ss, void *p, size_t s)
{
testlib_unused(s);
return mps_fix(ss, (mps_addr_t)p);
return mps_fix(ss, (mps_addr_t *)p);
}
static void *test(void *arg, size_t s)