diff options
author | Sara Golemon <pollita@php.net> | 2004-07-01 04:43:29 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2004-07-01 04:43:29 +0000 |
commit | 76766f2d31d5e47703bb887d79fe1025cf8928e1 (patch) | |
tree | 8d06254038e7990c46d8db4c438fd87a42698966 | |
parent | d24e005477e835fb215c404de69411e1f9994351 (diff) | |
download | php-git-76766f2d31d5e47703bb887d79fe1025cf8928e1.tar.gz |
That hashtable should never have been an argument....
-rw-r--r-- | ext/cpdf/cpdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cpdf/cpdf.c b/ext/cpdf/cpdf.c index f6162b2efc..4c872d7cbd 100644 --- a/ext/cpdf/cpdf.c +++ b/ext/cpdf/cpdf.c @@ -726,7 +726,7 @@ PHP_FUNCTION(cpdf_set_font) int id, type; CPDFdoc *pdf; - if (ZEND_NUM_ARGS() != 4 || zend_get_parameters_ex(ht, 4, &arg1, &arg2, &arg3, &arg4) == FAILURE) { + if (ZEND_NUM_ARGS() != 4 || zend_get_parameters_ex(4, &arg1, &arg2, &arg3, &arg4) == FAILURE) { WRONG_PARAM_COUNT; } |