diff options
Diffstat (limited to 'type_decoder.c')
-rw-r--r-- | type_decoder.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/type_decoder.c b/type_decoder.c index 35187a5..2bb3616 100644 --- a/type_decoder.c +++ b/type_decoder.c @@ -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 |