From: Bert Vermeulen Date: Mon, 14 Feb 2011 04:55:01 +0000 (+0100) Subject: output_ols: disabled cursors don't really need to be listed X-Git-Tag: libsigrok-0.1.0~304 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=4487177c795db2393fd7e4a3c7b46b56345dc8e1;p=libsigrok.git output_ols: disabled cursors don't really need to be listed --- diff --git a/output/output_ols.c b/output/output_ols.c index 31e1b055..dd9ffdf6 100644 --- a/output/output_ols.c +++ b/output/output_ols.c @@ -43,7 +43,7 @@ static int init(struct sr_output *o) struct sr_probe *probe; GSList *l; uint64_t samplerate; - int num_enabled_probes, i; + int num_enabled_probes; if (!(ctx = g_malloc(sizeof(struct context)))) return SR_ERR_MALLOC; @@ -70,8 +70,6 @@ static int init(struct sr_output *o) g_string_append_printf(ctx->header, ";EnabledChannels: -1\n"); g_string_append_printf(ctx->header, ";Compressed: true\n"); g_string_append_printf(ctx->header, ";CursorEnabled: false\n"); - for (i = 0; i < 10; i++) - g_string_append_printf(ctx->header, ";Cursor%d: 0\n", i); return SR_OK; }