From: Andrei Zmievski Date: Thu, 14 Sep 2000 20:22:02 +0000 (+0000) Subject: Fix warnings. X-Git-Tag: php-4.0.3RC1~136 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da3c43182ae34ddf5a3e62d71430cdbf8d9f6bf9;p=php Fix warnings. --- 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); } /* }}} */