From 3c9c82c0c6a5eaaa14f4915d09fc65e632626231 Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Tue, 24 Jan 2012 00:11:45 +0100 Subject: [PATCH] cli: use , as a separator for PD stacks, like all other options. --- sigrok-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2