X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=device.c;h=a159ff003c7f07f7b2669885e87fdbb44d5730b7;hp=2d63cab419c626234b437d81e43ede64f2188f5c;hb=3addebb2440550f9b34a39629bdb7c1ab1d05fc3;hpb=59e421bbda22512122660aee370d31b88f8ccdf4 diff --git a/device.c b/device.c index 2d63cab..a159ff0 100644 --- a/device.c +++ b/device.c @@ -17,10 +17,10 @@ * along with this program. If not, see . */ +#include #include #include #include "sigrok-cli.h" -#include "config.h" static void free_drvopts(struct sr_config *src) { @@ -76,7 +76,7 @@ struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi) for (l = channel_groups; l; l = l->next) { cg = l->data; - if (!strcasecmp(opt_channel_group, cg->name)) { + if (!g_ascii_strcasecmp(opt_channel_group, cg->name)) { return cg; } }