diff options
author | foobar <sniper@php.net> | 2005-11-25 16:01:41 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-11-25 16:01:41 +0000 |
commit | 366832fbd29d48badd1a864c101ad538815cd727 (patch) | |
tree | 641b3f69382cd72753bd003797d6d05f4af56a8e /ext/sqlite/sqlite.c | |
parent | 4e4b98a66db712bb316aabbecec71df87de82697 (diff) | |
download | php-git-366832fbd29d48badd1a864c101ad538815cd727.tar.gz |
MFH: Fixed wrong usage of ZEND_EXTENSION_API_NO (these are not Zend exts :)
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index e1c1219855..de45a67c03 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -282,7 +282,7 @@ static zend_module_dep sqlite_deps[] = { }; zend_module_entry sqlite_module_entry = { -#if ZEND_MODULE_API_NO >= 20050608 +#if ZEND_MODULE_API_NO >= 20050922 STANDARD_MODULE_HEADER_EX, NULL, sqlite_deps, #elif ZEND_MODULE_API_NO >= 20010901 |