Skip to content

Commit

Permalink
- MFH: Fix type in example
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes committed Sep 28, 2007
1 parent 059b506 commit e9dd6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.PARAMETER_PARSING_API
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e9dd6fa

Please sign in to comment.