Skip to content

Commit

Permalink
remove extra parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Apr 27, 2024
1 parent d76ad43 commit 92829c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/otel_observer.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 92829c6

Please sign in to comment.