From: Florian Forster Date: Wed, 13 Jun 2007 11:00:17 +0000 (+0200) Subject: snmp plugin: Use `size_t' for the OID length to be more portable. X-Git-Tag: collectd-4.1.0~53 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7231b1d252007ced3b6c55304682646cddbf620e;p=collectd.git snmp plugin: Use `size_t' for the OID length to be more portable. --- diff --git a/src/snmp.c b/src/snmp.c index 64f41ada..7473341f 100644 --- a/src/snmp.c +++ b/src/snmp.c @@ -32,7 +32,7 @@ struct oid_s { oid oid[MAX_OID_LEN]; - uint32_t oid_len; + size_t oid_len; }; typedef struct oid_s oid_t;