Skip to content

Commit eac646a

Browse files
committed
make ts_sample_mt's valid check future proof
Signed-off-by: Martin Kepplinger <martink@posteo.de>
1 parent 22f4f68 commit eac646a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tslib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ static void ReadInputMT(InputInfoPtr local)
183183
if (!(priv->samp_mt[i][j].valid & TSLIB_MT_VALID))
184184
continue;
185185
#else
186-
if (priv->samp_mt[i][j].valid != 1)
186+
if (priv->samp_mt[i][j].valid < 1)
187187
continue;
188188
#endif
189189

0 commit comments

Comments
 (0)