X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fcommon%2Fdmm%2Ffs9922.c;h=ffe06a051d1d41e37138bd8f2c592ca7daf0b1db;hb=98494dc8a393f6e1b73fddb1e59aa3a3f590d764;hp=4e878ac63f4a717b00f55d2100984eee0ac7a8da;hpb=045e9a99186396694fb10f3155a7fb868705ecb8;p=libsigrok.git diff --git a/hardware/common/dmm/fs9922.c b/hardware/common/dmm/fs9922.c index 4e878ac6..ffe06a05 100644 --- a/hardware/common/dmm/fs9922.c +++ b/hardware/common/dmm/fs9922.c @@ -194,7 +194,7 @@ static void parse_flags(const uint8_t *buf, struct fs9922_info *info) info->is_beep = (buf[9] & (1 << 3)) != 0; info->is_diode = (buf[9] & (1 << 2)) != 0; info->is_percent = (buf[9] & (1 << 1)) != 0; - info->is_z4 = (buf[8] & (1 << 0)) != 0; /* User symbol 4 */ + info->is_z4 = (buf[9] & (1 << 0)) != 0; /* User symbol 4 */ /* Byte 10 */ info->is_volt = (buf[10] & (1 << 7)) != 0;