diff options
| author | Jeroen van Wolffelaar <jeroen@php.net> | 2001-09-26 08:41:05 +0000 | 
|---|---|---|
| committer | Jeroen van Wolffelaar <jeroen@php.net> | 2001-09-26 08:41:05 +0000 | 
| commit | 8ec9e5bca0c835a01d5bb0411aa9c8d700aa541e (patch) | |
| tree | 852879648b557175f33467d4a393801279f60221 | |
| parent | 21f2b9277ff3a878ca57559b96e692f3551320b8 (diff) | |
| download | php-git-8ec9e5bca0c835a01d5bb0411aa9c8d700aa541e.tar.gz | |
Fix parse-error
| -rw-r--r-- | ext/sybase/php_sybase_db.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index 1974adfee5..78d80f0cde 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -1286,7 +1286,7 @@ PHP_FUNCTION(sybase_result)  			break;  	} -	*return_value = *Z_LVAL_P(result->data[row)][field_offset]; +	*return_value = *Z_LVAL_P(result->data[row][field_offset]);  	pval_copy_constructor(return_value);  }  /* }}} */  | 
