[ci skip] random: Trim trailing whitespace in randomizer.c

To keep the diff cleaner for future changes, such as #9664.
This commit is contained in:
Tim Düsterhus 2022-11-27 19:10:01 +01:00
parent c8d8bf7c59
commit 350883db06
No known key found for this signature in database
GPG key ID: 8FF75566094168AF

View file

@ -131,7 +131,7 @@ PHP_METHOD(Random_Randomizer, getInt)
&& ((php_random_status_state_mt19937 *) randomizer->status->state)->mode != MT_RAND_MT19937 && ((php_random_status_state_mt19937 *) randomizer->status->state)->mode != MT_RAND_MT19937
)) { )) {
uint64_t r = php_random_algo_mt19937.generate(randomizer->status) >> 1; uint64_t r = php_random_algo_mt19937.generate(randomizer->status) >> 1;
/* This is an inlined version of the RAND_RANGE_BADSCALING macro that does not invoke UB when encountering /* This is an inlined version of the RAND_RANGE_BADSCALING macro that does not invoke UB when encountering
* (max - min) > ZEND_LONG_MAX. * (max - min) > ZEND_LONG_MAX.
*/ */