Skip to content

Commit

Permalink
- Fixed parameter format
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Jan 27, 2009
1 parent 855e9fb commit 13ac985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/pgsql/pgsql.c
Expand Up @@ -1735,7 +1735,7 @@ PHP_FUNCTION(pg_field_table)
char *table_name;
zend_rsrc_list_entry *field_table;

if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|b!", &result, &fnum, &return_oid) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|b", &result, &fnum, &return_oid) == FAILURE) {
return;
}

Expand Down

0 comments on commit 13ac985

Please sign in to comment.