Fix type on snmp_set_test_ok to be snmp_err_t

This function was returning values from snmp_err_t but wasn't
upgraded to using the typedef after commit babce70

This resulted in compilation failure on MSVC 2013
This commit is contained in:
Joel Cunningham
2016-01-20 11:18:35 -06:00
parent babce70c95
commit 0a67c06b51
2 changed files with 2 additions and 2 deletions

View File

@@ -988,7 +988,7 @@ snmp_oid_in_range(const u32_t *oid_in, u8_t oid_len, const struct snmp_oid_range
return 1;
}
u8_t
snmp_err_t
snmp_set_test_ok(struct snmp_node_instance* instance, u16_t value_len, void* value)
{
LWIP_UNUSED_ARG(instance);