libsec: fix dsagen 64-bit bug
This commit is contained in:
parent
c5d1b22170
commit
c38ef9e7b6
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
||||||
static void
|
static void
|
||||||
Hrand(uchar *s)
|
Hrand(uchar *s)
|
||||||
{
|
{
|
||||||
ulong *u = (ulong*)s;
|
uint32 *u = (uint32*)s;
|
||||||
*u++ = fastrand();
|
*u++ = fastrand();
|
||||||
*u++ = fastrand();
|
*u++ = fastrand();
|
||||||
*u++ = fastrand();
|
*u++ = fastrand();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue