From: Gerhard Sittig Date: Sun, 26 Feb 2017 08:16:36 +0000 (+0100) Subject: instance.c: fix a 'matched' vs 'matches' typo X-Git-Tag: libsigrokdecode-0.5.0~78 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=e27d3e67cb69d54936399cd97a4c40c9842549a7;hp=e27d3e67cb69d54936399cd97a4c40c9842549a7;p=libsigrokdecode.git instance.c: fix a 'matched' vs 'matches' typo The Decoder_wait() routine will populate the .matched attribute before returning to the caller. The srd_inst_start() routine used to setup a .matches attribute which is unexpected. Make both routines consistently assign to 'matched' as that is what Python decoder implementations are referencing. ---