php5: use zend_function_entry, for compatibility with PHP 5.4

This commit is contained in:
Frédéric Péters 2012-03-05 14:02:17 +01:00
parent bb244a6ebe
commit 33bff4308f
1 changed files with 1 additions and 1 deletions

View File

@ -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, '''\