diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-06-12 14:05:10 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-06-12 14:05:10 +0200 |
commit | d4e66accaa268cf6dc4a930c336e94fb75a455db (patch) | |
tree | ba2c86653893e8c8a0c89356d2c4a7c1ebbe4f44 | |
parent | fa09758a739ad9cb42be295135fad3ab4817e2bb (diff) | |
download | plan9front-d4e66accaa268cf6dc4a930c336e94fb75a455db.tar.xz |
libsec: use u32int instead of uint when we need 32 bit (thanks erik)
-rw-r--r-- | sys/src/libsec/port/dsaprimes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libsec/port/dsaprimes.c b/sys/src/libsec/port/dsaprimes.c index ec56326a4..f9533dca6 100644 --- a/sys/src/libsec/port/dsaprimes.c +++ b/sys/src/libsec/port/dsaprimes.c @@ -12,7 +12,7 @@ static void Hrand(uchar *s) { - uint *u = (uint*)s; + u32int *u = (u32int*)s; *u++ = fastrand(); *u++ = fastrand(); *u++ = fastrand(); |