diff src/pr-output.cc @ 1328:ec2ab864e8eb

[project @ 1995-08-22 22:32:34 by jwe]
author jwe
date Tue, 22 Aug 1995 22:33:13 +0000
parents 24fee1f1a577
children 94bedeb289e5
line wrap: on
line diff
--- a/src/pr-output.cc
+++ b/src/pr-output.cc
@@ -929,7 +929,7 @@
 	    }
 	  else
 	    {
-	      for (size_t i = sizeof (double) - 1; i >= 0; i--)
+	      for (int i = sizeof (double) - 1; i >= 0; i--)
 		os.form ("%02x", (int) tmp.i[i]);
 	    }
 	}
@@ -955,7 +955,7 @@
 	    {
 	      if (bit_format > 1)
 		{
-		  for (int i = 0; i < sizeof (double); i++)
+		  for (size_t i = 0; i < sizeof (double); i++)
 		    PRINT_CHAR_BITS_SWAPPED (os, tmp.i[i]);
 		}
 	      else