summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorFrédéric Péters <fpeters@entrouvert.com>2012-03-05 14:02:17 +0100
committerFrédéric Péters <fpeters@entrouvert.com>2012-03-05 14:02:17 +0100
commit33bff4308fff6cd4e4283afb6486db4943c0344b (patch)
tree14346865750062a49dd0e611cd92fda1370c22df /bindings
parentbb244a6ebedd7acd0f822874d6ad75da74284cf4 (diff)
downloadlasso-33bff4308fff6cd4e4283afb6486db4943c0344b.tar.gz
lasso-33bff4308fff6cd4e4283afb6486db4943c0344b.tar.xz
lasso-33bff4308fff6cd4e4283afb6486db4943c0344b.zip
php5: use zend_function_entry, for compatibility with PHP 5.4
Diffstat (limited to 'bindings')
-rw-r--r--bindings/php5/wrapper_source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/php5/wrapper_source.py b/bindings/php5/wrapper_source.py
index 7148fd9c..7ec9fba8 100644
--- a/bindings/php5/wrapper_source.py
+++ b/bindings/php5/wrapper_source.py
@@ -508,7 +508,7 @@ PHP_MSHUTDOWN_FUNCTION(lasso)
def generate_functions_list(self):
print >> self.fd, '''\
-static function_entry lasso_functions[] = {'''
+static zend_function_entry lasso_functions[] = {'''
for m in self.functions_list:
print >> self.fd, ' PHP_FE(%s, NULL)' % m
print >> self.fd, '''\