libsec: use u32int instead of uint when we need 32 bit (thanks erik)

This commit is contained in:
cinap_lenrek 2014-06-12 14:05:10 +02:00
parent fa09758a73
commit d4e66accaa

View file

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