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 Wemm 2003-09-22 23:24:18 +00:00
parent 24789c549a
commit e31e949b5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120359

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");
}