X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput_vcd.c;h=61d27a10ec157a538d338b6bca834536355d6aa7;hb=218557b85a308adc6ac533eb3f33d3dee17c13f8;hp=f34eaa8c1a31c93c10c28de53badc3d155770866;hpb=3a285098170ee6d5c7eab3fd94606e61a4fbaa19;p=libsigrok.git diff --git a/output/output_vcd.c b/output/output_vcd.c index f34eaa8c..61d27a10 100644 --- a/output/output_vcd.c +++ b/output/output_vcd.c @@ -52,7 +52,7 @@ $comment\n Acquisition with %d/%d probes at %s\n$end\n"; static int init(struct sr_output *o) { struct context *ctx; - struct probe *probe; + struct sr_probe *probe; GSList *l; int num_probes, i; char *samplerate_s, *frequency_s, *timestamp; @@ -91,7 +91,7 @@ static int init(struct sr_output *o) g_string_append_printf(ctx->header, "$version %s %s $end\n", PACKAGE, PACKAGE_VERSION); - if (o->device->plugin && device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) { + if (o->device->plugin && sr_device_has_hwcap(o->device, SR_HWCAP_SAMPLERATE)) { ctx->samplerate = *((uint64_t *) o->device->plugin->get_device_info( o->device->plugin_index, SR_DI_CUR_SAMPLERATE)); if (!((samplerate_s = sr_samplerate_string(ctx->samplerate)))) {