X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=sigrok-cli.c;h=d4a694d1334f9fc762ecefd216404b7ce5c25e2b;hb=6b0462c2e0bcad51f759ec2efa417a137e8ca8c6;hp=367353623a124cb30def0e9bd3a9e3b653a53b0c;hpb=e2fe62cc46b53689105f2434c35cabb238f369b0;p=sigrok-cli.git diff --git a/sigrok-cli.c b/sigrok-cli.c index 3673536..d4a694d 100644 --- a/sigrok-cli.c +++ b/sigrok-cli.c @@ -196,7 +196,7 @@ static GSList *device_scan(void) static void show_version(void) { - GSList *l; + const GSList *l; struct sr_dev_driver **drivers; struct sr_input_format **inputs; struct sr_output_format **outputs; @@ -540,7 +540,7 @@ static void show_pd_detail(void) } static void datafeed_in(const struct sr_dev_inst *sdi, - struct sr_datafeed_packet *packet) + const struct sr_datafeed_packet *packet) { static struct sr_output *o = NULL; static int logic_probelist[SR_MAX_NUM_PROBES] = { -1 }; @@ -551,10 +551,10 @@ static void datafeed_in(const struct sr_dev_inst *sdi, static FILE *outfile = NULL; static int num_analog_probes = 0; struct sr_probe *probe; - struct sr_datafeed_logic *logic; - struct sr_datafeed_meta_logic *meta_logic; - struct sr_datafeed_analog *analog; - struct sr_datafeed_meta_analog *meta_analog; + const struct sr_datafeed_logic *logic; + const struct sr_datafeed_meta_logic *meta_logic; + const struct sr_datafeed_analog *analog; + const struct sr_datafeed_meta_analog *meta_analog; static int num_enabled_analog_probes = 0; int num_enabled_probes, sample_size, ret, i; uint64_t output_len, filter_out_len; @@ -1288,8 +1288,6 @@ static int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args) g_critical("Failed to set device option '%s'.", (char *)key); return ret; } - else - break; } return SR_OK;