summaryrefslogtreecommitdiff
path: root/ext/mcrypt
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-02-28 12:10:36 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-02-28 12:10:36 +0000
commit83059ae3defbdd4dcb5c68e20952f1ccdbef2715 (patch)
treeefccc85e6bc6aa6776cc45570068dcf267753599 /ext/mcrypt
parentca1fdf8a55b7dce499bf11b3351a0fb38db7833d (diff)
downloadphp-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.c2
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);