X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=controller.c;h=ddac3baf16c7e18b904dfb4ce63818f43c19a681;hb=4c1d067068fdb9e5f723b3548bddb64e0b06fc36;hp=e49212ceab8d49a310446cac782ff01827506cea;hpb=1b75abfdd3e00ef590c9d1905863f6f2cb5a8632;p=libsigrokdecode.git diff --git a/controller.c b/controller.c index e49212c..ddac3ba 100644 --- a/controller.c +++ b/controller.c @@ -767,7 +767,7 @@ SRD_API int srd_session_feed(uint64_t start_samplenum, uint8_t *inbuf, * stack). * * @param output_type The output type this callback will receive. Only one - * callback per output type can be registered. + * callback per output type can be registered. * @param cb The function to call. * @param user_data Unused. */ @@ -784,7 +784,7 @@ SRD_API int srd_register_callback(int output_type, } pd_cb->output_type = output_type; - pd_cb->callback = cb; + pd_cb->cb = cb; pd_cb->user_data = user_data; callbacks = g_slist_append(callbacks, pd_cb); @@ -801,7 +801,7 @@ SRD_PRIV void *srd_find_callback(int output_type) for (l = callbacks; l; l = l->next) { pd_cb = l->data; if (pd_cb->output_type == output_type) { - cb = pd_cb->callback; + cb = pd_cb->cb; break; } }