]> sigrok.org Git - libsigrok.git/commit
input/vcd: fix parse_header() return value check.
authorAurelien Jacobs <redacted>
Thu, 12 Feb 2015 10:30:52 +0000 (11:30 +0100)
committerUwe Hermann <redacted>
Thu, 12 Feb 2015 16:58:06 +0000 (17:58 +0100)
commit73931b7cc732f490ba6d2413707e50462666fa86
tree8cc9bb112197b9eb6535dd1f8f2471f76a142e36
parent2617c81a4b101714bf90173f4da0724007c58219
input/vcd: fix parse_header() return value check.

Mixing tests for both a boolean and an SR_ERR at the same time is not
really a good idea.
parse_header() actually returns a boolean so only check if it returns FALSE.

This fixes the following gcc-5 warning:

src/input/vcd.c: In function 'receive':
src/input/vcd.c:506:34: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
   if (!parse_header(in, in->buf) != SR_OK)
                                  ^
src/input/vcd.c