Skip to content

Commit

Permalink
Fixed zend_parse_parameters arguments...
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Esser committed Jun 24, 2004
1 parent 81abbc6 commit 476c9a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.input_filter
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ PHP_FUNCTION(my_get_raw)
HashTable *hash_ptr;
char *raw_var;

if(zend_parse_parameters(2 TSRMLS_CC, "ls|l", &arg, &var, &var_len) == FAILURE) {
if(zend_parse_parameters(2 TSRMLS_CC, "ls", &arg, &var, &var_len) == FAILURE) {
return;
}

Expand Down

0 comments on commit 476c9a3

Please sign in to comment.