From da3c43182ae34ddf5a3e62d71430cdbf8d9f6bf9 Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Thu, 14 Sep 2000 20:22:02 +0000 Subject: [PATCH] Fix warnings. --- ext/snmp/snmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index d59495424d..af1aaa520e 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -349,14 +349,14 @@ PHP_FUNCTION(snmpget) { /* {{{ proto array snmpwalk(string host, string community, string object_id [, int timeout [, int retries]]) Return all objects under the specified object id */ PHP_FUNCTION(snmpwalk) { - return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,2); + php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,2); } /* }}} */ /* {{{ proto array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]]) Return all objects including their respective object id withing the specified one */ PHP_FUNCTION(snmprealwalk) { - return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,3); + php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,3); } /* }}} */ -- 2.40.0