summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-06-25 23:14:19 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-06-25 23:14:19 +0000
commit0dc20e8bea5352827dfa7d13203b2aadaef10755 (patch)
treee4e56a9b0981ff0648d4f434bb4724c451dfe11c /ext/sqlite/sqlite.c
parent936c9d57369d907f730f1b7042548ab819b184b5 (diff)
downloadphp-git-0dc20e8bea5352827dfa7d13203b2aadaef10755.tar.gz
ZTS typo
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r--ext/sqlite/sqlite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index 1a26049dfe..a9759135b1 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -1793,7 +1793,7 @@ PHP_FUNCTION(sqlite_single_query)
while (rres->curr_row < rres->nrows) {
MAKE_STD_ZVAL(ent);
- php_sqlite_fetch_string(rres, decode_binary, ent TSRMLS_DC);
+ php_sqlite_fetch_string(rres, decode_binary, ent TSRMLS_CC);
/* if set and we only have 1 row in the result set, return the result as a string. */
if (srow) {
@@ -1837,7 +1837,7 @@ PHP_FUNCTION(sqlite_fetch_string)
ZEND_FETCH_RESOURCE(res, struct php_sqlite_result *, &zres, -1, "sqlite result", le_sqlite_result);
}
- php_sqlite_fetch_string(res, decode_binary, return_value TSRMLS_DC);
+ php_sqlite_fetch_string(res, decode_binary, return_value TSRMLS_CC);
}
/* }}} */