From: Andrei Zmievski Date: Sat, 20 Oct 2001 13:45:29 +0000 (+0000) Subject: Fix warning, X-Git-Tag: POST_PARAMETER_PARSING_API~68 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c90e7a78f7585df91283098b37c9ac2c3a96c5b;p=php Fix warning, --- diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index bd15b99c9d..df6676c711 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -216,8 +216,8 @@ PHP_FUNCTION(openlog) long option, facility; int ident_len; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sll", &ident, &option, - &facility) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sll", &ident, + &ident_len, &option, &facility) == FAILURE) { return; } if (BG(syslog_device)) {