]> git.gag.com Git - debian/gnuradio/commitdiff
strtof -> strtod
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 16 Aug 2006 18:44:25 +0000 (18:44 +0000)
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 16 Aug 2006 18:44:25 +0000 (18:44 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3320 221aa14e-8319-0410-a670-987f0aec2ac5

gr-radar/src/lib/eb-xambi.cc
gr-radar/src/lib/sim-airplane.cc
gr-radar/src/lib/sim-airplane2.cc

index c3c01953e6ceb1f1c2f762f4a70e4b01aae4f387..819baa333d1607747807de7cc43ebfb0b842ad55 100644 (file)
@@ -204,7 +204,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");
@@ -213,7 +213,7 @@ main(int argc, char **argv)
       break;
 
     case 'd':
-      max_doppler = strtof(optarg, 0);
+      max_doppler = strtod(optarg, 0);
       if (max_doppler < 0 || max_doppler >= 0.5){
        usage(argv[0]);
        fprintf(stderr, "    max_doppler must be in [0, 0.5)\n");
index 99ee9cca6ca40ee9837605dba9ed9cb22f7f38be..2d4bec86d5d8cb05036894a9d715342afe18fb71 100644 (file)
@@ -227,7 +227,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");
@@ -236,7 +236,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");
@@ -245,15 +245,15 @@ 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 '?':
index 937436c20cec9f06abc67c643a8a9bd27435cb1e..753b5952fff9999c2b76e49f2ebbec5375429e3c 100644 (file)
@@ -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 '?':