]> sigrok.org Git - libsigrok.git/commitdiff
output_ols: disabled cursors don't really need to be listed
authorBert Vermeulen <redacted>
Mon, 14 Feb 2011 04:55:01 +0000 (05:55 +0100)
committerBert Vermeulen <redacted>
Sun, 3 Apr 2011 04:18:05 +0000 (06:18 +0200)
output/output_ols.c

index 31e1b055a447c94d2d8a52dc087349016124c209..dd9ffdf672f7e5d1b3ccaafb1aea4638df5ab2c9 100644 (file)
@@ -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;
 }