]> sigrok.org Git - libsigrok.git/commitdiff
output: Fix options enumeration. Again.
authorBert Vermeulen <redacted>
Wed, 20 Aug 2014 15:33:09 +0000 (17:33 +0200)
committerBert Vermeulen <redacted>
Wed, 20 Aug 2014 15:33:09 +0000 (17:33 +0200)
src/output/output.c

index 9a6d6679f3634ac0ea29166b38c983ecb397d216..a2d7c5107ef5352f349cccd34c351c1c98717549 100644 (file)
@@ -170,7 +170,7 @@ SR_API const struct sr_option **sr_output_options_get(const struct sr_output_mod
 
        mod_opts = o->options();
 
-       for (size = 1; mod_opts[size].id; size++)
+       for (size = 0; mod_opts[size].id; size++)
                ;
        opts = g_malloc((size + 1) * sizeof(struct sr_option *));