logger: fix precision bug introduced by new -e option

Add missing "break" so the -e option stops spilling on the -f precision
option. Fixes commit 53ce8b9d9f ("logger: new relative timestamps
option, relative to first entry seen"). Since that commit the -e option
was wrongly assigned to the precision too.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2021-04-16 23:28:19 +00:00 committed by Liam Girdwood
parent 6c2cdffd02
commit dc0ab8a449
1 changed files with 1 additions and 0 deletions

View File

@ -248,6 +248,7 @@ int main(int argc, char *argv[])
return -EINVAL;
}
config.relative_timestamps = i;
break;
}
case 'f':
config.time_precision = atoi(optarg);