]> sigrok.org Git - libsigrok.git/commitdiff
input/chronovu_la8: Code cleanup.
authorBert Vermeulen <redacted>
Thu, 2 Oct 2014 11:55:37 +0000 (13:55 +0200)
committerBert Vermeulen <redacted>
Thu, 2 Oct 2014 11:55:37 +0000 (13:55 +0200)
This cleans up a warning generated by clang's static analyzer.

src/input/chronovu_la8.c

index 1d7e16adf10b96395db3d2dee0264e5918e773c0..55331df83ddbac741f73b25adffc4b193375ea21 100644 (file)
@@ -109,7 +109,6 @@ static int process_buffer(struct sr_input *in)
        /* Cut off at multiple of unitsize. */
        chunk_size = in->buf->len / logic.unitsize * logic.unitsize;
 
-       chunk = 0;
        for (i = 0; i < chunk_size; i += chunk) {
                logic.data = in->buf->str + i;
                chunk = MIN(MAX_CHUNK_SIZE, chunk_size - i);