While cleaning out my tree, fix another strict alias warning that would

be happening if we didn't stop compiling with -fno-strict-aliasing.
This commit is contained in:
peter 2003-09-22 23:24:18 +00:00
parent 9d44b0a6d7
commit 66147b7918

View File

@ -1076,6 +1076,6 @@ rn_init()
addmask_key = cplim = rn_ones + max_keylen;
while (cp < cplim)
*cp++ = -1;
if (rn_inithead((void **)&mask_rnhead, 0) == 0)
if (rn_inithead((void **)(void *)&mask_rnhead, 0) == 0)
panic("rn_init 2");
}