Skip to content

Commit 2ac03c2

Browse files
author
Michael Fero
committed
fix: Correcting build for PHP 7
1 parent f1ad18a commit 2ac03c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/src/Cassandra/Rows.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ php_cassandra_rows_create(cassandra_rows *current, zval *result TSRMLS_DC) {
4242
}
4343

4444
object_init_ex(result, cassandra_rows_ce);
45-
rows = PHP_CASSANDRA_GET_ROWS(PHP5TO7_ZVAL_MAYBE_P(result));
45+
rows = PHP_CASSANDRA_GET_ROWS(result);
4646

4747
PHP5TO7_ZVAL_COPY(PHP5TO7_ZVAL_MAYBE_P(rows->rows),
4848
PHP5TO7_ZVAL_MAYBE_P(current->next_rows));

0 commit comments

Comments
 (0)