diff options
author | foobar <sniper@php.net> | 2003-08-05 16:02:41 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-08-05 16:02:41 +0000 |
commit | 29c92b6d91e84a075c19dfa8f0db1b8d59035548 (patch) | |
tree | 873348241d377f0b6ac3022ff06877266130b762 /ext/sybase/php_sybase_db.c | |
parent | 7ec8b0bcba8c9d692cccbf4fbc8a410fd1878153 (diff) | |
download | php-git-29c92b6d91e84a075c19dfa8f0db1b8d59035548.tar.gz |
MFH: fixed typos
Diffstat (limited to 'ext/sybase/php_sybase_db.c')
-rw-r--r-- | ext/sybase/php_sybase_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index 5d338b941b..d67742b22d 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -621,7 +621,7 @@ PHP_FUNCTION(sybase_close) Select Sybase database */ PHP_FUNCTION(sybase_select_db) { - zval *db, **sybase_link_index; + zval **db, **sybase_link_index; int id,type; sybase_link *sybase_ptr; @@ -960,7 +960,7 @@ PHP_FUNCTION(sybase_free_result) php_error_docref(NULL TSRMLS_CC, E_WARNING,"%d is not a Sybase result index",Z_LVAL_PP(sybase_result_index)); RETURN_FALSE; } - zend_list_delete(Z_LVAL_P(sybase_result_index)); + zend_list_delete(Z_LVAL_PP(sybase_result_index)); RETURN_TRUE; } /* }}} */ |