We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f05d6e commit 3ed5264Copy full SHA for 3ed5264
ext/random/randomizer.c
@@ -161,7 +161,7 @@ PHP_METHOD(Random_Randomizer, getFloat)
161
162
bounds_type = ZSTR_VAL(bounds_name)[0] + ZSTR_LEN(bounds_name);
163
}
164
-
+
165
switch (bounds_type) {
166
case 'C' + sizeof("ClosedOpen") - 1:
167
if (UNEXPECTED(max <= min)) {
@@ -424,7 +424,7 @@ PHP_METHOD(Random_Randomizer, getBytesFromString)
424
mask = 0x7;
425
} else if (source_length <= 0x10) {
426
mask = 0xF;
427
- } else if (source_length <= 0x20) {
+ } else if (source_length <= 0x20) {
428
mask = 0x1F;
429
} else if (source_length <= 0x40) {
430
mask = 0x3F;
0 commit comments