diff options
| author | Jon Parise <jon@php.net> | 2001-07-29 01:46:37 +0000 | 
|---|---|---|
| committer | Jon Parise <jon@php.net> | 2001-07-29 01:46:37 +0000 | 
| commit | a0fa32b6462a9c503b46dc633921684d5867a063 (patch) | |
| tree | 0205ef82934cc7c0eec962f144095584cfc651dd | |
| parent | 9e61c801c21e8a3b20c1d2b79fbff2feb55947f1 (diff) | |
| download | php-git-a0fa32b6462a9c503b46dc633921684d5867a063.tar.gz | |
Fix typo.
| -rw-r--r-- | ext/pgsql/pgsql.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 97d25bf124..a83b564cd1 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1144,7 +1144,7 @@ static void php_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type)  	int i, num_fields, pgsql_row;  	char *element, *field_name;  	uint element_len; -	TSRMLS__FETCH(); +	TSRMLS_FETCH();  	switch (ZEND_NUM_ARGS()) {  		case 1: @@ -1812,7 +1812,7 @@ PHP_FUNCTION(pg_loimport)  	int id = -1;  	PGconn *pgsql;  	Oid oid; -	TSRMLS__FETCH(); +	TSRMLS_FETCH();  	switch (ZEND_NUM_ARGS()) {  		case 1: | 
