mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
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
|
||||
Hrand(uchar *s)
|
||||
{
|
||||
ulong *u = (ulong*)s;
|
||||
uint32 *u = (uint32*)s;
|
||||
*u++ = fastrand();
|
||||
*u++ = fastrand();
|
||||
*u++ = fastrand();
|
||||
|
|
Loading…
Reference in a new issue