summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-08-24 07:19:40 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-08-24 07:19:40 +0000
commite4f90530615ca3f467668b2da560a5dea5662772 (patch)
tree53cf9893317dd4742555342fc8c09f93c7840969
parent488a1e73990b44b69f3f5b4265cdc0015b7ab3c1 (diff)
downloadphp-git-e4f90530615ca3f467668b2da560a5dea5662772.tar.gz
Fixed typo
-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 fa004f8a81..2b63a9c271 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -2886,7 +2886,7 @@ PHPAPI int php_pgsql_metadata(PGconn *pg_link, const char *table_name, zval *met
pg_result = PQexec(pg_link, querystr.c);
if (PQresultStatus(pg_result) != PGRES_TUPLES_OK || (num_rows = PQntuples(pg_result)) == 0) {
- php_error(E_NOTICE, "%s(): Dailed to query metadata for '%s' table %s",
+ php_error(E_NOTICE, "%s(): Failed to query metadata for '%s' table %s",
get_active_function_name(TSRMLS_C), table_name, querystr.c);
smart_str_free(&querystr);
PQclear(pg_result);