ICC fixes.
authorBrian Aker <brian@gaz>
Mon, 21 Dec 2009 07:10:49 +0000 (23:10 -0800)
committerBrian Aker <brian@gaz>
Mon, 21 Dec 2009 07:10:49 +0000 (23:10 -0800)
clients/utilities.c
tests/test.c

index 0c286b70e1b3c76fddee058989fdd6be747bfb98..5d761e3c94729c03dca3931b005ec381f359abb0 100644 (file)
@@ -18,7 +18,7 @@
 
 long int timedif(struct timeval a, struct timeval b)
 {
-  register int us, s;
+  long us, s;
 
   us = (int)(a.tv_usec - b.tv_usec);
   us /= 1000;
@@ -29,7 +29,7 @@ long int timedif(struct timeval a, struct timeval b)
 
 void version_command(const char *command_name)
 {
-  printf("%s v%u.%u\n", command_name, 1, 0);
+  printf("%s v%u.%u\n", command_name, 1U, 0U);
   exit(0);
 }
 
@@ -71,7 +71,7 @@ void help_command(const char *command_name, const char *description,
 {
   unsigned int x;
 
-  printf("%s v%u.%u\n\n", command_name, 1, 0);
+  printf("%s v%u.%u\n\n", command_name, 1U, 0U);
   printf("\t%s\n\n", description);
   printf("Current options. A '=' means the option takes a value.\n\n");
 
index 653cc7313a5ffebf80a23889f63283a73f4c43fa..fb501fadc2edcc6d57270c2cd47ce52cdc21a5d8 100644 (file)
@@ -32,7 +32,7 @@ static void world_stats_print(world_stats_st *stats)
 
 static long int timedif(struct timeval a, struct timeval b)
 {
-  register int us, s;
+  long us, s;
 
   us = (int)(a.tv_usec - b.tv_usec);
   us /= 1000;