diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2010-08-17 13:34:11 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2010-08-17 13:34:11 +0000 |
commit | a109c3538f3dd1d4435e379e7540a9da038af8a6 (patch) | |
tree | 35c31b1f7680025a8344207bfb650768c9558f93 | |
parent | 5a3624221b542adffd592c9823131fc484f0dec6 (diff) | |
download | php-git-a109c3538f3dd1d4435e379e7540a9da038af8a6.tar.gz |
Fix my fix for arginfo, trunk patch will follow shortly
-rw-r--r-- | ext/standard/basic_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 676ce1634e..cb056e1ac1 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1210,7 +1210,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_fstat, 0) ZEND_ARG_INFO(0, fp) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(arginfo_copy, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_copy, 0, 0, 2) ZEND_ARG_INFO(0, source_file) ZEND_ARG_INFO(0, destination_file) ZEND_ARG_INFO(0, context) |