]> git.gsnw.org Git - fping.git/commitdiff
fix warnings
authorDavid Schweikert <david@schweikert.ch>
Mon, 23 Jan 2017 20:28:26 +0000 (21:28 +0100)
committerDavid Schweikert <david@schweikert.ch>
Mon, 23 Jan 2017 20:28:26 +0000 (21:28 +0100)
src/fping.c

index 81c237873ab6fcba65789e6c95cb59c64a3edd32..77b4732e672e6ce8f1f9743925a2ec55ef2ba22d 100644 (file)
@@ -38,15 +38,6 @@ extern "C"
 #include "fping.h"
 #include "options.h"
 
-/* if compiling for Windows, use this separate set
-  (too difficult to ifdef all the autoconf defines) */
-#ifdef WIN32
-
-/*** Windows includes ***/
-
-
-#else
-
 /*** autoconf includes ***/
 
 
@@ -90,17 +81,9 @@ extern "C"
 #include <netdb.h>
 #include <ctype.h>
 
-/* RS6000 hasn't getopt.h */
-#ifdef HAVE_GETOPT_H
 #include <getopt.h>
-#endif /* HAVE_GETOPT_H */
 
-/* RS6000 has sys/select.h */
-#ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
-#endif /* HAVE_SYS_SELECT_H */
-
-#endif /* WIN32 */
 
 /*** externals ***/
 
@@ -436,7 +419,7 @@ int main( int argc, char **argv )
             break;
 
         case 'b':
-            if (!sscanf(optarg,"%i",&ping_data_size))
+            if (!sscanf(optarg,"%u",&ping_data_size))
                 usage(1);
 
             break;