diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-03-11 07:09:12 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-03-11 07:09:12 +0000 |
commit | 8b8fcff81b391d89cb791be7d34dc077526ac971 (patch) | |
tree | 9ffe1dffb68494e0e11b9c1510553eb4fb27b4bb /ext/pgsql/pgsql.c | |
parent | 6729e0e9bf5a53814ca32d12d4a996c208c90824 (diff) | |
download | php-git-8b8fcff81b391d89cb791be7d34dc077526ac971.tar.gz |
Fix possible build error under Windows.
# Recent libpq under windows supports PQcmdTuples, right?
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 6e6e5ced5f..82acc88f0c 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -916,7 +916,7 @@ static void php_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_ty Z_LVAL_P(return_value) = atoi(PQcmdTuples(pgsql_result)); #else php_error(E_WARNING,"This compilation does not support %s()", - get_active_function_name(TSRMLS_C); + get_active_function_name(TSRMLS_C)); Z_LVAL_P(return_value) = 0; #endif break; |