1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-15 11:21:19 -07:00

Fix missing casts

Copied from Perforce
 Change: 21214
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Pekka Pirinen 2000-05-17 18:51:13 +01:00
parent ef743ad358
commit 80efeaa18c

View file

@ -1,6 +1,6 @@
/*
TEST_HEADER
id = $HopeName$
id = $HopeName: MMQA_test_function!40.c(trunk.4) $
summary = check tagged roots are scanned correctly
language = c
link = testlib.o exfmt.o
@ -13,6 +13,7 @@ END_HEADER
void *stackpointer;
static void test(void)
{
mps_space_t space;
@ -46,7 +47,7 @@ static void test(void)
cdie(
mps_root_create_table_masked(&root, space, MPS_RANK_EXACT,
0, &z[0], 100, 0x4),
0, (mps_addr_t*)&z[0], 100, 0x4),
"create table root");
cdie(
@ -96,9 +97,9 @@ static void test(void)
mps_space_destroy(space);
comment("Destroyed space.");
}
int main(void)
{
void *m;