Code

src/oping.c: Minor coding style changes.
authorFlorian Forster <ff@octo.it>
Fri, 13 Feb 2015 12:01:13 +0000 (13:01 +0100)
committerFlorian Forster <ff@octo.it>
Fri, 13 Feb 2015 12:01:13 +0000 (13:01 +0100)
src/oping.c

index 08423eac3887118443b83e87e347284d54ac405b..3ae226c6f5e64d25e31d3ab3d960e0e673a8289f 100644 (file)
@@ -701,20 +701,16 @@ static int read_options (int argc, char **argv) /* {{{ */
                                break;
 
                        case 'w':
-                       {
-                               char *endp;
-                               double t = strtod(optarg, &endp);
-                               if(optarg[0] != '\0' && *endp == '\0')
                                {
-                                       opt_timeout = t;
-                               }
-                               else{
-                                       fprintf (stderr, "Ignoring invalid timeout: %s\n",
-                                                       optarg);
+                                       char *endp = NULL;
+                                       double t = strtod (optarg, &endp);
+                                       if ((optarg[0] != 0) && (endp != NULL) && (*endp == 0))
+                                               opt_timeout = t;
+                                       else
+                                               fprintf (stderr, "Ignoring invalid timeout: %s\n",
+                                                               optarg);
                                }
-
                                break;
-                       }
 
                        case 'I':
                                {
@@ -1682,7 +1678,7 @@ int main (int argc, char **argv) /* {{{ */
        }
 #endif
 
-        setlocale(LC_ALL, "");
+       setlocale(LC_ALL, "");
        optind = read_options (argc, argv);
 
 #if !_POSIX_SAVED_IDS