From e9dd6fab9194b3ae717b79322853dfa6fb64fb28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Schl=C3=BCter?= Date: Fri, 28 Sep 2007 22:04:39 +0000 Subject: [PATCH] - MFH: Fix type in example --- README.PARAMETER_PARSING_API | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.PARAMETER_PARSING_API b/README.PARAMETER_PARSING_API index fef6da4bf4..052489d242 100644 --- a/README.PARAMETER_PARSING_API +++ b/README.PARAMETER_PARSING_API @@ -70,7 +70,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; -- 2.50.1