diff options
author | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-25 11:35:02 +0000 |
commit | 4b30846b50b3c42d6787f82fe37525028e094a09 (patch) | |
tree | 22d19ea6d7814d03f3fb8587d996b37cb42841f8 /ext/snmp/snmp.c | |
parent | f1f2a649e299b9b997d38977909bd54c52f5c4e3 (diff) | |
download | php-git-4b30846b50b3c42d6787f82fe37525028e094a09.tar.gz |
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/snmp/snmp.c')
-rw-r--r-- | ext/snmp/snmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 4ec880e8ca..28613e7415 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -402,7 +402,7 @@ const zend_function_entry snmp_functions[] = { PHP_FE(snmp_get_valueretrieval, arginfo_snmp_get_valueretrieval) PHP_FE(snmp_read_mib, arginfo_snmp_read_mib) - {NULL,NULL,NULL} + PHP_FE_END }; /* }}} */ @@ -2207,7 +2207,7 @@ static zend_function_entry php_snmp_class_methods[] = { PHP_ME(snmp, getErrno, arginfo_snmp_void, ZEND_ACC_PUBLIC) PHP_ME(snmp, getError, arginfo_snmp_void, ZEND_ACC_PUBLIC) - {NULL, NULL, NULL} + PHP_FE_END }; #define PHP_SNMP_PROPERTY_ENTRY_RECORD(name) \ |