diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-01-22 14:47:43 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-01-22 14:47:43 +0000 |
commit | 5cfd3e7b3e1a7a4031f676d5b65392c7de113164 (patch) | |
tree | 56981f62e28b1bb24b0ae12170b53fb1ce9d1119 | |
parent | 4f868b84d6e7c387e27f50aae54476bc97a70bc2 (diff) | |
download | libguestfs-5cfd3e7b3e1a7a4031f676d5b65392c7de113164.tar.gz libguestfs-5cfd3e7b3e1a7a4031f676d5b65392c7de113164.tar.xz libguestfs-5cfd3e7b3e1a7a4031f676d5b65392c7de113164.zip |
php: function_entry -> zend_function_entry.
function_entry was left over from PHP 3.
See: http://news.php.net/php.pecl.dev/7123
-rw-r--r-- | generator/generator_php.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/generator_php.ml b/generator/generator_php.ml index 5e7294c0..6038fb7b 100644 --- a/generator/generator_php.ml +++ b/generator/generator_php.ml @@ -106,7 +106,7 @@ PHP_MINIT_FUNCTION (guestfs_php) NULL, PHP_GUESTFS_HANDLE_RES_NAME, module_number); } -static function_entry guestfs_php_functions[] = { +static zend_function_entry guestfs_php_functions[] = { PHP_FE (guestfs_create, NULL) PHP_FE (guestfs_last_error, NULL) "; |