diff options
author | Johannes Schlüter <johannes@php.net> | 2010-03-30 23:03:02 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2010-03-30 23:03:02 +0000 |
commit | 26b08f9857e79b3281d580846e8eb9c27b24af32 (patch) | |
tree | 76e047f503871cb304b2d3427caffffb7fc1c7ba /ext/pdo_odbc | |
parent | d5b2d647c069d9df1eb9ca91813dc7f285bbd015 (diff) | |
download | php-git-26b08f9857e79b3281d580846e8eb9c27b24af32.tar.gz |
Remove main/php3_compat.h, for that a few references to `function_entry` have
to be replaced by `zend_function_entry`.
Diffstat (limited to 'ext/pdo_odbc')
-rwxr-xr-x | ext/pdo_odbc/pdo_odbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_odbc/pdo_odbc.c b/ext/pdo_odbc/pdo_odbc.c index 319cf2067d..0ea92a9009 100755 --- a/ext/pdo_odbc/pdo_odbc.c +++ b/ext/pdo_odbc/pdo_odbc.c @@ -31,7 +31,7 @@ #include "php_pdo_odbc_int.h" /* {{{ pdo_odbc_functions[] */ -const function_entry pdo_odbc_functions[] = { +const zend_function_entry pdo_odbc_functions[] = { {NULL, NULL, NULL} }; /* }}} */ |