libsec: use u32int instead of uint when we need 32 bit (thanks erik)
This commit is contained in:
parent
fa09758a73
commit
d4e66accaa
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
static void
|
||||
Hrand(uchar *s)
|
||||
{
|
||||
uint *u = (uint*)s;
|
||||
u32int *u = (u32int*)s;
|
||||
*u++ = fastrand();
|
||||
*u++ = fastrand();
|
||||
*u++ = fastrand();
|
||||
|
|
Loading…
Reference in a new issue