]> sigrok.org Git - libsigrokdecode.git/commitdiff
type_decoder.c: Fix a scan-build warning.
authorUwe Hermann <redacted>
Tue, 15 May 2018 22:09:53 +0000 (00:09 +0200)
committerUwe Hermann <redacted>
Wed, 16 May 2018 10:17:42 +0000 (12:17 +0200)
  type_decoder.c:836:3: warning: Value stored to 'ret' is never read
                ret = process_samples_until_condition_match(di, &found_match);
                ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

type_decoder.c

index 35187a598a2d6ca19c5f09441f02955340e2468b..2bb361618f71e3d65ffa7c8c1b5605e3485be6a2 100644 (file)
@@ -836,7 +836,9 @@ static PyObject *Decoder_wait(PyObject *self, PyObject *args)
                 * while the termination request still gets signalled.
                 */
                found_match = FALSE;
-               ret = process_samples_until_condition_match(di, &found_match);
+
+               /* Ignore return value for now, should never be negative. */
+               (void)process_samples_until_condition_match(di, &found_match);
 
                Py_END_ALLOW_THREADS