From: Florian Forster Date: Fri, 13 Feb 2015 12:01:13 +0000 (+0100) Subject: src/oping.c: Minor coding style changes. X-Git-Url: https://git.tokkee.org/?p=liboping.git;a=commitdiff_plain;h=a336f1ecc9665dc1d2f20fd8dfe6d9a93bb41b25 src/oping.c: Minor coding style changes. --- diff --git a/src/oping.c b/src/oping.c index 08423ea..3ae226c 100644 --- a/src/oping.c +++ b/src/oping.c @@ -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