From: Johannes Schlüter Date: Fri, 28 Sep 2007 22:04:28 +0000 (+0000) Subject: - Fix type in example X-Git-Tag: RELEASE_2_0_0a1~1722 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97c89c72e5a801d5a595dd6294e356dd02f41d7e;p=php - Fix type in example --- diff --git a/README.PARAMETER_PARSING_API b/README.PARAMETER_PARSING_API index 9c21f5f6a0..9c29b714bc 100644 --- a/README.PARAMETER_PARSING_API +++ b/README.PARAMETER_PARSING_API @@ -93,7 +93,7 @@ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lsz", /* Gets an object of class specified by my_ce, and an optional double. */ zval *obj; double d = 0.5; -zend_class_entry my_ce; +zend_class_entry *my_ce; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|d", &obj, my_ce, &d) == FAILURE) { return;