diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-25 14:49:11 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-28 01:19:27 +0200 |
commit | b33b8aa56ec27edf57cd7dc3d735370f60bfe13d (patch) | |
tree | 34b68bd830e834f54d9aa3f61a5d489b13d16d29 /type_decoder.c | |
parent | 122e9a90a54e034b93f554938896983d293edec1 (diff) | |
download | libsigrokdecode-b33b8aa56ec27edf57cd7dc3d735370f60bfe13d.tar.gz libsigrokdecode-b33b8aa56ec27edf57cd7dc3d735370f60bfe13d.zip |
srd/cli/qt: Some more API consistency renames.
Diffstat (limited to 'type_decoder.c')
-rw-r--r-- | type_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/type_decoder.c b/type_decoder.c index e5426c1..19fd350 100644 --- a/type_decoder.c +++ b/type_decoder.c @@ -135,7 +135,7 @@ static PyObject *Decoder_put(PyObject *self, PyObject *args) switch (pdo->output_type) { case SRD_OUTPUT_ANN: /* Annotations are only fed to callbacks. */ - if ((cb = srd_find_callback(pdo->output_type))) { + if ((cb = srd_pd_output_callback_find(pdo->output_type))) { /* Annotations need converting from PyObject. */ if (convert_pyobj(di, data, &pdata->ann_format, (char ***)&pdata->data) != SRD_OK) { |