Skip to content

Commit 1e9280e

Browse files
committed
[ci skip] Trim trailing whitespace in php_random.h
1 parent 4164d2d commit 1e9280e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/random/php_random.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static inline uint64_t php_random_uint128_lo(php_random_uint128_t num)
107107
static inline php_random_uint128_t php_random_uint128_constant(uint64_t hi, uint64_t lo)
108108
{
109109
php_random_uint128_t r;
110-
110+
111111
r.hi = hi;
112112
r.lo = lo;
113113

@@ -117,7 +117,7 @@ static inline php_random_uint128_t php_random_uint128_constant(uint64_t hi, uint
117117
static inline php_random_uint128_t php_random_uint128_add(php_random_uint128_t num1, php_random_uint128_t num2)
118118
{
119119
php_random_uint128_t r;
120-
120+
121121
r.lo = (num1.lo + num2.lo);
122122
r.hi = (num1.hi + num2.hi + (r.lo < num1.lo));
123123

@@ -133,7 +133,7 @@ static inline php_random_uint128_t php_random_uint128_multiply(php_random_uint12
133133
y0 = num2.lo & 0xffffffffULL,
134134
y1 = num2.lo >> 32,
135135
z0 = (((x1 * y0) + (x0 * y0 >> 32)) & 0xffffffffULL) + x0 * y1;
136-
136+
137137
r.hi = num1.hi * num2.lo + num1.lo * num2.hi;
138138
r.lo = num1.lo * num2.lo;
139139
r.hi += x1 * y1 + ((x1 * y0 + (x0 * y0 >> 32)) >> 32) + (z0 >> 32);

0 commit comments

Comments
 (0)