This commit is contained in:
parent
d2fea1155a
commit
c2a5bbe1d6
|
|
@ -56,13 +56,13 @@ int main(int argc, char* argv[])
|
|||
switch(a)
|
||||
{
|
||||
case 'f': // Frequency
|
||||
SetFrequency = strtof(optarg);
|
||||
SetFrequency = atof(optarg);
|
||||
break;
|
||||
case 'e': //End immediately
|
||||
NotKill=true;
|
||||
break;
|
||||
case 'p': //ppm
|
||||
ppm=std::strtof(optarg);
|
||||
ppm=atof(optarg);
|
||||
ppmset=1;
|
||||
break;
|
||||
case 'h': // help
|
||||
|
|
|
|||
Loading…
Reference in New Issue