From: foobar Date: Fri, 15 Apr 2005 22:08:43 +0000 (+0000) Subject: MFH: - Use correct type (bug #32720) X-Git-Tag: php-4.4.0RC1~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=626d78118dbf3ff389d70f37f8a3fe3f57089ade;p=php MFH: - Use correct type (bug #32720) --- diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 587a8cb087..2957a82a1a 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -347,9 +347,9 @@ static void php_snmp_internal(INTERNAL_FUNCTION_PARAMETERS, struct snmp_pdu *pdu=NULL, *response; struct variable_list *vars; oid name[MAX_NAME_LEN]; - int name_length; + size_t name_length; oid root[MAX_NAME_LEN]; - int rootlen = 0; + size_t rootlen = 0; int gotroot = 0; int status, count; char buf[2048];