diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-28 12:10:36 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-28 12:10:36 +0000 |
commit | 83059ae3defbdd4dcb5c68e20952f1ccdbef2715 (patch) | |
tree | efccc85e6bc6aa6776cc45570068dcf267753599 /ext/mcrypt | |
parent | ca1fdf8a55b7dce499bf11b3351a0fb38db7833d (diff) | |
download | php-git-83059ae3defbdd4dcb5c68e20952f1ccdbef2715.tar.gz |
Use {NULL, NULL, NULL} to terminate function entry.
# It does not fix any bugs, since {0} works also.
Diffstat (limited to 'ext/mcrypt')
-rw-r--r-- | ext/mcrypt/mcrypt.c | 2 |
1 files changed, 1 insertions, 1 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); |