diff options
Diffstat (limited to 'gr-radar/src/lib/sim-airplane2.cc')
-rw-r--r-- | gr-radar/src/lib/sim-airplane2.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-radar/src/lib/sim-airplane2.cc b/gr-radar/src/lib/sim-airplane2.cc index 937436c20..753b5952f 100644 --- a/gr-radar/src/lib/sim-airplane2.cc +++ b/gr-radar/src/lib/sim-airplane2.cc @@ -298,7 +298,7 @@ main(int argc, char **argv) break; case 's': - nsamples_to_skip = (long long) strtof(optarg, 0); + nsamples_to_skip = (long long) strtod(optarg, 0); if (nsamples_to_skip < 0){ usage(argv[0]); fprintf(stderr, " nsamples_to_skip must be >= 0\n"); @@ -307,7 +307,7 @@ main(int argc, char **argv) break; case 'n': - nsamples_to_produce = (long long) strtof(optarg, 0); + nsamples_to_produce = (long long) strtod(optarg, 0); if (nsamples_to_produce < 0){ usage(argv[0]); fprintf(stderr, " nsamples_to_produce must be >= 0\n"); @@ -316,19 +316,19 @@ main(int argc, char **argv) break; case 'g': - gain_db = strtof(optarg, 0); + gain_db = strtod(optarg, 0); break; case 'f': - tx_freq = strtof(optarg, 0); + tx_freq = strtod(optarg, 0); break; case 'r': - sample_rate = strtof(optarg, 0); + sample_rate = strtod(optarg, 0); break; case 'S': - start_time = strtof(optarg, 0); + start_time = strtod(optarg, 0); break; case '?': |