common: fix mix of spaces & tabs

This commit is contained in:
Philippe Teuwen 2019-03-09 19:19:50 +01:00
commit 23f1a253a7
32 changed files with 4323 additions and 4323 deletions

View file

@ -17,7 +17,7 @@ uint32_t burtle_get_mod( prng_ctx *x ) {
void burtle_init_mod(prng_ctx *x, uint32_t seed ) {
x->a = 0xf1ea5eed;
x->b = x->c = x->d = seed;
x->b = x->c = x->d = seed;
for (uint8_t i=0; i < 42; ++i) {
(void)burtle_get_mod(x);
}
@ -33,7 +33,7 @@ void burtle_init(prng_ctx *x, uint32_t seed ) {
uint32_t GetSimplePrng( uint32_t seed ){
seed *= 0x19660D;
seed += 0x3C6EF35F;
return seed;
seed *= 0x19660D;
seed += 0x3C6EF35F;
return seed;
}