libsec: fix dsagen 64-bit bug

This commit is contained in:
Russ Cox 2011-10-05 16:23:01 -04:00
parent c5d1b22170
commit c38ef9e7b6

View file

@ -12,7 +12,7 @@
static void
Hrand(uchar *s)
{
ulong *u = (ulong*)s;
uint32 *u = (uint32*)s;
*u++ = fastrand();
*u++ = fastrand();
*u++ = fastrand();