Skip to content

Commit eae2748

Browse files
committed
Fix long integer type
1 parent b5ab9cd commit eae2748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ PHP_FUNCTION(openssl_csr_export)
16741674
*/
16751675
static int parse_time_range(zval *validity, time_t *from_time, time_t *to_time) {
16761676
zval *tmp;
1677-
long lval;
1677+
zend_long lval;
16781678
double dval;
16791679
ASN1_TIME *t;
16801680
time_t from = -1;

0 commit comments

Comments
 (0)