more cast style consistency

This commit is contained in:
nhmall
2023-11-13 20:31:02 -05:00
parent ee732d4054
commit d064ac2cda
18 changed files with 44 additions and 44 deletions

View File

@@ -84,7 +84,7 @@ rn2_on_display_rng(register int x)
{
static unsigned seed = 1;
seed *= 2739110765;
return (int)((seed >> 16) % (unsigned)x);
return (int) ((seed >> 16) % (unsigned) x);
}
#endif /* USE_ISAAC64 */