From 1bc1e05a2c702e36f72ee036655a7b7969fda166 Mon Sep 17 00:00:00 2001 From: Raphael Boucherie <raphael.boucherie@inria.fr> Date: Mon, 26 Jun 2017 14:48:11 +0200 Subject: [PATCH] n_range option --- timing/timing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/timing/timing.c b/timing/timing.c index 519cee03d..54680c32f 100644 --- a/timing/timing.c +++ b/timing/timing.c @@ -597,9 +597,9 @@ parse_arguments(int *_argc, char ***_argv, int *iparam, int *start, int *stop, i case 'a' : iparam[IPARAM_RHBLK ] = atoi(optarg); break; case 'P' : iparam[IPARAM_P ] = atoi(optarg); break; case 'M' : iparam[IPARAM_MODE ] = atoi(optarg); break; - case 'b' : iparam[IPARAM_NB ] = atoi(optarg); - iparam[IPARAM_MB ] = atoi(optarg); break; - case 'n' : get_range(optarg, start, stop, step); break; + case 'n' : iparam[IPARAM_NB ] = atoi(optarg); break; + case 'm' : iparam[IPARAM_MB ] = atoi(optarg); break; + case 'N' : get_range(optarg, start, stop, step); break; case 'h' : show_help(argv[0]); break; default: break; -- GitLab