diff options
| author | Marcus Boerger <helly@php.net> | 2002-10-24 19:15:40 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2002-10-24 19:15:40 +0000 |
| commit | 15b2e277a479175557dd964ad833eb005798d000 (patch) | |
| tree | 80c3603d15d3fcd17b10b589e3ef3779d6d0b6d2 /ext/pgsql/pgsql.c | |
| parent | 67670560e4be002d96250d5402b07055ddef5d2e (diff) | |
| download | php-git-15b2e277a479175557dd964ad833eb005798d000.tar.gz | |
fix compiler warning
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 a4d437382c..70aa530229 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -3048,7 +3048,7 @@ PHP_FUNCTION(pg_get_notify) PHP_FUNCTION(pg_get_pid) { zval *pgsql_link; - int id = -1, pid; + int id = -1; PGconn *pgsql; if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "r", |
