]> sigrok.org Git - sigrok-cli.git/commitdiff
Enumerate output module options according to API change.
authorBert Vermeulen <redacted>
Fri, 15 Aug 2014 20:32:17 +0000 (22:32 +0200)
committerBert Vermeulen <redacted>
Fri, 15 Aug 2014 20:32:17 +0000 (22:32 +0200)
session.c
show.c

index 39eb164942c447a57bba67e04ad3e9e7d7fee06a..ab7e67488fdb519c431faa63dddf81351d338d6b 100644 (file)
--- a/session.c
+++ b/session.c
@@ -71,7 +71,7 @@ static int set_limit_time(const struct sr_dev_inst *sdi)
        return SR_OK;
 }
 
-GHashTable *generic_arg_to_opt(const struct sr_option *opts, GHashTable *genargs)
+GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs)
 {
        GHashTable *hash;
        GVariant *gvar;
@@ -80,7 +80,7 @@ GHashTable *generic_arg_to_opt(const struct sr_option *opts, GHashTable *genargs
 
        hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
                        (GDestroyNotify)g_variant_unref);
-       for (opt = opts; opt->id && opt->def; opt++) {
+       for (opt = opts[0]; opt; opt++) {
                if (!(s = g_hash_table_lookup(genargs, opt->id)))
                        continue;
                if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE_UINT32)) {
@@ -102,7 +102,7 @@ GHashTable *generic_arg_to_opt(const struct sr_option *opts, GHashTable *genargs
 const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi)
 {
        const struct sr_output_module *omod;
-       const struct sr_option *opts;
+       const struct sr_option **opts;
        const struct sr_output *o;
        GHashTable *fmtargs, *fmtopts;
        char *fmtspec;
@@ -131,7 +131,7 @@ const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi)
        g_hash_table_remove(fmtargs, "sigrok_key");
        if ((opts = sr_output_options_get(omod))) {
                fmtopts = generic_arg_to_opt(opts, fmtargs);
-               sr_output_options_free(omod);
+               sr_output_options_free(opts);
        } else
                fmtopts = NULL;
        o = sr_output_new(omod, fmtopts, sdi);
diff --git a/show.c b/show.c
index 4c0cd8f6737667e3322307f3173da232f63ac1a4..c35f3dd1dccf453433c35601609ddb7754d39c69 100644 (file)
--- a/show.c
+++ b/show.c
@@ -647,7 +647,7 @@ void show_pd_detail(void)
 void show_output(void)
 {
        const struct sr_output_module *omod;
-       const struct sr_option *opt;
+       const struct sr_option *opt, **opts;
        GSList *l;
        char *s, **tok;
 
@@ -658,9 +658,9 @@ void show_output(void)
        printf("ID: %s\nName: %s\n", sr_output_id_get(omod),
                        sr_output_name_get(omod));
        printf("Description: %s\n", sr_output_description_get(omod));
-       if ((opt = sr_output_options_get(omod))) {
+       if ((opts = sr_output_options_get(omod))) {
                printf("Options:\n");
-               while (opt->id) {
+               for (opt = opts[0]; opt; opt++) {
                        printf("  %s: %s", opt->id, opt->desc);
                        if (opt->def) {
                                s = g_variant_print(opt->def, FALSE);
@@ -679,7 +679,7 @@ void show_output(void)
                        printf("\n");
                        opt++;
                }
-               sr_output_options_free(omod);
+               sr_output_options_free(opts);
        }
        g_strfreev(tok);
 }