summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2003-07-19 11:00:17 +0000
committerSebastian Bergmann <sebastian@php.net>2003-07-19 11:00:17 +0000
commitaeefb55a6a1ce52b52ab335117c6505367fa6526 (patch)
tree231f74fa8ecfb0e8470fdf42c97eb897e483fa4a /ext/sqlite/sqlite.c
parent59d6d4ab188f03b3bb2cd0bf81ca57d53de5e7fc (diff)
downloadphp-git-aeefb55a6a1ce52b52ab335117c6505367fa6526.tar.gz
Cleanup, as suggested by Andi.
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r--ext/sqlite/sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index cdac6ba1ac..701735c15e 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -1081,7 +1081,7 @@ PHP_FUNCTION(sqlite_popen)
int type;
/* sanity check to ensure that the resource is still a valid regular resource
* number */
- if (_zend_list_find(db->rsrc_id, &type TSRMLS_CC) == db) {
+ if (zend_list_find(db->rsrc_id, &type) == db) {
/* already accessed this request; map it */
zend_list_addref(db->rsrc_id);
ZVAL_RESOURCE(return_value, db->rsrc_id);