From: Bert Vermeulen Date: Mon, 23 Jan 2012 23:11:45 +0000 (+0100) Subject: cli: use , as a separator for PD stacks, like all other options. X-Git-Tag: sigrok-cli-0.3.0~59 X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=commitdiff_plain;h=3c9c82c0c6a5eaaa14f4915d09fc65e632626231;ds=sidebyside cli: use , as a separator for PD stacks, like all other options. --- diff --git a/sigrok-cli.c b/sigrok-cli.c index 22b8117..c50d064 100644 --- a/sigrok-cli.c +++ b/sigrok-cli.c @@ -1021,7 +1021,7 @@ int main(int argc, char **argv) } if (opt_pd_stack) { - pds = g_strsplit(opt_pd_stack, ":", 0); + pds = g_strsplit(opt_pd_stack, ",", 0); if (g_strv_length(pds) < 2) { printf("Specify at least two protocol decoders to stack.\n"); return 1;