]> git.gsnw.org Git - fping.git/commitdiff
small compatibility fix
authorDavid Schweikert <david@schweikert.ch>
Thu, 16 Feb 2012 22:28:41 +0000 (23:28 +0100)
committerDavid Schweikert <david@schweikert.ch>
Thu, 16 Feb 2012 22:28:41 +0000 (23:28 +0100)
fping.c

diff --git a/fping.c b/fping.c
index d22eb92f680f3810f6634689dc8748e6ebeda359..3c96e7f4bc13936f7c5d9a60ef6ae927e4f26ef0 100644 (file)
--- a/fping.c
+++ b/fping.c
@@ -707,7 +707,7 @@ int main( int argc, char **argv )
     if( ( ping_data_size > MAX_PING_DATA ) || ( ping_data_size < MIN_PING_DATA ) )
     {
         fprintf( stderr, "%s: data size %u not valid, must be between %u and %u\n",
-            prog, ping_data_size, MIN_PING_DATA, MAX_PING_DATA );
+            prog, ping_data_size, (unsigned int) MIN_PING_DATA, (unsigned int) MAX_PING_DATA );
         usage();
     
     }/* IF */