Fix bug in puzzlecmd --acquisition-off

This commit is contained in:
Joris van Rantwijk 2024-09-20 10:06:52 +02:00
parent 12413ba041
commit 1c26688d93
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ int main(int argc, char **argv)
args.acquisition_en = true; args.acquisition_en = true;
break; break;
case OPT_ACQUISITION_OFF: case OPT_ACQUISITION_OFF:
args.acquisition_en = true; args.acquisition_en = false;
break; break;
case OPT_CHANNELS: case OPT_CHANNELS:
args.channels = parse_int(optarg, ok); args.channels = parse_int(optarg, ok);