diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/mcrypt/mcrypt.c | 2 | ||||
| -rw-r--r-- | ext/mhash/mhash.c | 10 | ||||
| -rw-r--r-- | ext/sysvshm/sysvshm.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index bfdc2369b4..53006158d9 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -84,7 +84,7 @@ function_entry mcrypt_functions[] = { PHP_FE(mcrypt_module_close, NULL) #endif - {0}, + {NULL, NULL, NULL} }; static PHP_MINFO_FUNCTION(mcrypt); diff --git a/ext/mhash/mhash.c b/ext/mhash/mhash.c index cb6e885983..e7ba9ed85b 100644 --- a/ext/mhash/mhash.c +++ b/ext/mhash/mhash.c @@ -34,11 +34,11 @@ function_entry mhash_functions[] = { PHP_FE(mhash_get_block_size, NULL) - PHP_FE(mhash_get_hash_name, NULL) - PHP_FE(mhash_keygen_s2k, NULL) - PHP_FE(mhash_count, NULL) - PHP_FE(mhash, NULL) {0} - , + PHP_FE(mhash_get_hash_name, NULL) + PHP_FE(mhash_keygen_s2k, NULL) + PHP_FE(mhash_count, NULL) + PHP_FE(mhash, NULL) + {NULL, NULL, NULL} }; static PHP_MINIT_FUNCTION(mhash); diff --git a/ext/sysvshm/sysvshm.c b/ext/sysvshm/sysvshm.c index f4bc876f67..1d6b399298 100644 --- a/ext/sysvshm/sysvshm.c +++ b/ext/sysvshm/sysvshm.c @@ -47,7 +47,7 @@ function_entry sysvshm_functions[] = { PHP_FE(shm_put_var, NULL) PHP_FE(shm_get_var, NULL) PHP_FE(shm_remove_var, NULL) - {0} + {NULL, NULL, NULL} }; /* }}} */ |
