Skip to content

Commit

Permalink
Fixe build
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Nov 27, 2009
1 parent fa95584 commit 5ef06b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/pgsql/pgsql.c
Expand Up @@ -768,7 +768,7 @@ static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent)
if (Z_TYPE_P(index_ptr) != le_index_ptr) {
RETURN_FALSE;
}
link = (uintptr_t) index_ptr->ptr;
link = (ulong) index_ptr->ptr;
ptr = zend_list_find(link,&type); /* check if the link is still there */
if (ptr && (type==le_link || type==le_plink)) {
Z_LVAL_P(return_value) = link;
Expand Down

0 comments on commit 5ef06b0

Please sign in to comment.