fix ZEND_ATOL usage

This commit is contained in:
Remi Collet
2021-07-23 13:52:03 +02:00
committed by Bryan Davis
parent 31d331f711
commit b35ef25b4b

View File

@@ -542,7 +542,11 @@ finish:
break;
default:
#if PHP_VERSION_ID < 80100
ZEND_ATOL(*lval, buf);
#else
*lval = ZEND_ATOL(buf);
#endif
break;
}