clang fmt

This commit is contained in:
henderkes
2026-03-13 22:52:08 +07:00
parent 0d87765fb8
commit 0564eaf150

View File

@@ -97,8 +97,8 @@ PHP_FUNCTION(frankenphp_opcache_reset);
* table. Uses handler comparison instead of orig_opcache_reset check so that
* a fresh function table after PHP module restart is always re-overridden. */
static void frankenphp_override_opcache_reset(void) {
zend_function *func = zend_hash_str_find_ptr(CG(function_table), "opcache_reset",
sizeof("opcache_reset") - 1);
zend_function *func = zend_hash_str_find_ptr(
CG(function_table), "opcache_reset", sizeof("opcache_reset") - 1);
if (func != NULL && func->type == ZEND_INTERNAL_FUNCTION &&
((zend_internal_function *)func)->handler !=
ZEND_FN(frankenphp_opcache_reset)) {