diff options
author | Scott MacVicar <scottmac@php.net> | 2009-01-28 23:58:09 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-01-28 23:58:09 +0000 |
commit | 3a25c34a01dabf3ccaebbfc1773f81e2c8dd39c8 (patch) | |
tree | fd68d5e8d095865b49277c53942dde5160244c09 /ext/sqlite3/sqlite3.c | |
parent | 86df0f095d249d8127cf73bfbeaa3ee2c3e645eb (diff) | |
download | php-git-3a25c34a01dabf3ccaebbfc1773f81e2c8dd39c8.tar.gz |
Fix build on Windows
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 3a57cad6a5..c77c191dd0 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -1011,7 +1011,7 @@ static int php_sqlite3_stream_stat(php_stream *stream, php_stream_statbuf *ssb T return -1; } -PHPAPI php_stream_ops php_stream_sqlite3_ops = { +static php_stream_ops php_stream_sqlite3_ops = { php_sqlite3_stream_write, php_sqlite3_stream_read, php_sqlite3_stream_close, |