diff options
Diffstat (limited to 'type_logic.c')
-rw-r--r-- | type_logic.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/type_logic.c b/type_logic.c index 5e499f4..bb4ef3d 100644 --- a/type_logic.c +++ b/type_logic.c @@ -49,8 +49,7 @@ static PyObject *srd_logic_iternext(PyObject *self) logic->inbuf + logic->itercnt * logic->di->data_unitsize, logic->di->data_unitsize); for (i = 0; i < logic->di->dec_num_probes; i++) - probe_samples[i] = - sample & (1 << logic->di->dec_probemap[i]) ? 1 : 0; + probe_samples[i] = sample & (1 << logic->di->dec_probemap[i]) ? 1 : 0; /* Prepare the next samplenum/sample list in this iteration. */ py_samplenum = |