summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-01-27 14:40:13 +0000
committerFelipe Pena <felipe@php.net>2009-01-27 14:40:13 +0000
commit855e9fb998cb2ea7d6083898537f26ee66048748 (patch)
tree12e2103ad22b12cd0eeb7fa783f87438ba0e3c46
parent42b58608e55b673e6db8287dd27136ceab0610e8 (diff)
downloadphp-git-855e9fb998cb2ea7d6083898537f26ee66048748.tar.gz
- Removed wrong '/' in parameter format
-rw-r--r--ext/pgsql/pgsql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 7e71fc5c8e..4d76b360db 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -3454,7 +3454,7 @@ PHP_FUNCTION(pg_copy_from)
ExecStatusType status;
int argc = ZEND_NUM_ARGS();
- if (zend_parse_parameters(argc TSRMLS_CC, "rs/a|ss",
+ if (zend_parse_parameters(argc TSRMLS_CC, "rsa|ss",
&pgsql_link, &table_name, &table_name_len, &pg_rows,
&pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len) == FAILURE) {
return;