X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput_text.c;h=0507e02c51262948b09c066e7c4c2d1b96b3a0a4;hb=4c100f3244ad816070fe2e30713705e109d5b4fb;hp=9ef300336046b0ba9b4f30db31d1456081a2dfe8;hpb=4c9ffa83cf5b63445a1463af18a910a8cc786e31;p=libsigrok.git diff --git a/output/output_text.c b/output/output_text.c index 9ef30033..0507e02c 100644 --- a/output/output_text.c +++ b/output/output_text.c @@ -93,7 +93,7 @@ static void init(struct output *o, int default_spl) ctx->header = malloc(512); num_probes = g_slist_length(o->device->probes); - samplerate = *((uint64_t *) o->device->plugin->get_device_info(o->device->plugin_index, DI_CUR_SAMPLE_RATE)); + samplerate = *((uint64_t *) o->device->plugin->get_device_info(o->device->plugin_index, DI_CUR_SAMPLERATE)); snprintf(ctx->header, 512, "Acquisition with %d/%d probes at ", ctx->num_enabled_probes, num_probes); if(samplerate >= GHZ(1)) snprintf(ctx->header + strlen(ctx->header), 512, "%"PRIu64" GHz", samplerate / 1000000000);