uni-t-dmm: Fix compiler warning.
protocol.c:84:5: warning: 'ret' may be used uninitialized in this function [-Wmaybe-uninitialized]
This commit is contained in:
parent
6e9d545cf4
commit
811155da46
|
@ -77,6 +77,7 @@ static void decode_packet(struct dev_context *devc, int dmm, const uint8_t *buf)
|
||||||
memset(&analog, 0, sizeof(struct sr_datafeed_analog));
|
memset(&analog, 0, sizeof(struct sr_datafeed_analog));
|
||||||
|
|
||||||
/* Parse the protocol packet. */
|
/* Parse the protocol packet. */
|
||||||
|
ret = SR_ERR;
|
||||||
if (dmm == UNI_T_UT61D)
|
if (dmm == UNI_T_UT61D)
|
||||||
ret = sr_dmm_parse_fs9922(buf, &floatval, &analog);
|
ret = sr_dmm_parse_fs9922(buf, &floatval, &analog);
|
||||||
else if (dmm == VOLTCRAFT_VC820)
|
else if (dmm == VOLTCRAFT_VC820)
|
||||||
|
|
Loading…
Reference in New Issue