Skip to content

Commit 3ed5264

Browse files
committed
[ci skip] random: Fix whitespace errors in randomizer.c
1 parent 1f05d6e commit 3ed5264

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/random/randomizer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ PHP_METHOD(Random_Randomizer, getFloat)
161161

162162
bounds_type = ZSTR_VAL(bounds_name)[0] + ZSTR_LEN(bounds_name);
163163
}
164-
164+
165165
switch (bounds_type) {
166166
case 'C' + sizeof("ClosedOpen") - 1:
167167
if (UNEXPECTED(max <= min)) {
@@ -424,7 +424,7 @@ PHP_METHOD(Random_Randomizer, getBytesFromString)
424424
mask = 0x7;
425425
} else if (source_length <= 0x10) {
426426
mask = 0xF;
427-
} else if (source_length <= 0x20) {
427+
} else if (source_length <= 0x20) {
428428
mask = 0x1F;
429429
} else if (source_length <= 0x40) {
430430
mask = 0x3F;

0 commit comments

Comments
 (0)