summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2018-09-25 11:18:24 -0400
committerSara Golemon <pollita@php.net>2018-09-25 11:18:24 -0400
commitb5d0eb44c0c1a452a82054e860e8c6a9420ac5df (patch)
treeb57ce6c0d36649ef68ec4f538bf570e7f1e51b7d
parent9e56a3373e88c6e147a5e11acddf134d2d3209ba (diff)
downloadphp-git-b5d0eb44c0c1a452a82054e860e8c6a9420ac5df.tar.gz
Fixed bug #76918 Repeated parameter name in arg info
-rw-r--r--ext/hash/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/hash.c b/ext/hash/hash.c
index bbc12aa414..e8c554e88d 100644
--- a/ext/hash/hash.c
+++ b/ext/hash/hash.c
@@ -1292,7 +1292,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_hash_update_file, 0, 0, 2)
ZEND_ARG_INFO(0, context)
ZEND_ARG_INFO(0, filename)
- ZEND_ARG_INFO(0, context)
+ ZEND_ARG_INFO(0, stream_context)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_hash_final, 0, 0, 1)