diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2009-02-18 20:07:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2009-02-18 20:07:40 +0000 |
commit | bdb3d4320e8ec15a58bd4d44d8d49e4cb0630c74 (patch) | |
tree | 5c8f7386af2d8c03172fd4c142e81738754f5134 /ext/sqlite3/sqlite3.c | |
parent | b489d3a69fcea9c8a79cb0cf00a09f8d9fd7d058 (diff) | |
download | php-git-bdb3d4320e8ec15a58bd4d44d8d49e4cb0630c74.tar.gz |
Removed unused var
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 88f7c69b38..ad7eeb5a66 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -902,7 +902,7 @@ typedef struct { static size_t php_sqlite3_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) { - php_stream_sqlite3_data *sqlite3_stream = (php_stream_sqlite3_data *) stream->abstract; +/* php_stream_sqlite3_data *sqlite3_stream = (php_stream_sqlite3_data *) stream->abstract; */ return 0; } |