Skip to content

Commit

Permalink
Fix incompatible pointer types
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jan 29, 2024
1 parent 77dce50 commit ea88a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/php_pqres.c
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ static PHP_METHOD(pqres, count) {
zend_restore_error_handling(&zeh);

if (SUCCESS == rv) {
long count;
zend_long count;

if (SUCCESS != php_pqres_count_elements_ex(Z_OBJ_P(getThis()), &count)) {
throw_exce(EX_UNINITIALIZED, "pq\\Result not initialized");
Expand Down

0 comments on commit ea88a82

Please sign in to comment.