diff options
Diffstat (limited to 'byterun/globroots.c')
-rw-r--r-- | byterun/globroots.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/globroots.c b/byterun/globroots.c index ded393e89..d9111eefe 100644 --- a/byterun/globroots.c +++ b/byterun/globroots.c @@ -43,11 +43,11 @@ struct global_root_list { (i.e. 2 * (NUM_LEVELS - 1)). Moreover, the congruential PRNG is faster and guaranteed to be deterministic (to reproduce bugs). */ -static uint32 random_seed = 0; +static uint32_t random_seed = 0; static int random_level(void) { - uint32 r; + uint32_t r; int level = 0; /* Linear congruence with modulus = 2^32, multiplier = 69069 |