X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Fols.c;h=62ab5382bbdf9008220ce49841dc69d5fa258a42;hb=bb7ef79377ae617e1275373e0b631beb7f909d73;hp=a6ce6ea72846f072c071217d5829c9d9f67e6f86;hpb=d68e2d1a21ac5c3f24d88b7689f98764e4d57c30;p=libsigrok.git diff --git a/output/ols.c b/output/ols.c index a6ce6ea7..62ab5382 100644 --- a/output/ols.c +++ b/output/ols.c @@ -53,16 +53,16 @@ static int init(struct sr_output *o) ctx->num_samples = 0; num_enabled_probes = 0; - for (l = o->device->probes; l; l = l->next) { + for (l = o->dev->probes; l; l = l->next) { probe = l->data; if (probe->enabled) num_enabled_probes++; } ctx->unitsize = (num_enabled_probes + 7) / 8; - if (o->device->plugin && sr_dev_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) - samplerate = *((uint64_t *) o->device->plugin->get_device_info( - o->device->plugin_index, SR_DI_CUR_SAMPLERATE)); + if (o->dev->plugin && sr_dev_has_hwcap(o->dev, SR_HWCAP_SAMPLERATE)) + samplerate = *((uint64_t *) o->dev->plugin->get_dev_info( + o->dev->plugin_index, SR_DI_CUR_SAMPLERATE)); else samplerate = 0;