From 5c90e7a78f7585df91283098b37c9ac2c3a96c5b Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Sat, 20 Oct 2001 13:45:29 +0000 Subject: [PATCH] Fix warning, --- ext/standard/syslog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) { -- 2.40.0