Skip to content

Commit e7bffc0

Browse files
remicolletbd808
authored andcommitted
Fix [-Wincompatible-pointer-types] warning
1 parent 4702575 commit e7bffc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ void handle_sequence (parser_state_t *state, zval *retval) {
531531
/* apply callbacks to the collected node */
532532
if (Y_FILTER_FAILURE == apply_filter(
533533
retval, src_event, state->callbacks)) {
534-
zval_ptr_dtor(&retval);
534+
zval_ptr_dtor(retval);
535535
ZVAL_UNDEF(retval);
536536
goto done;
537537
//TODO Sean-Der

0 commit comments

Comments
 (0)