From 92829c6546666fd3a226e2f6de231822004ef0d6 Mon Sep 17 00:00:00 2001 From: Brett McBride Date: Sat, 27 Apr 2024 14:18:56 +1000 Subject: [PATCH] remove extra parenthesis --- ext/otel_observer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/otel_observer.c b/ext/otel_observer.c index 1635395..16fd201 100644 --- a/ext/otel_observer.c +++ b/ext/otel_observer.c @@ -228,7 +228,7 @@ static inline bool is_valid_signature(zend_fcall_info fci, zval param = fci.params[i]; type = Z_TYPE(fci.params[i]); - if ((type_mask == IS_UNDEF)) { + if (type_mask == IS_UNDEF) { // no type mask -> ok } else if (Z_TYPE(param) == IS_OBJECT) { // object special-case handling (check for interfaces, subclasses)