diff src/symbols.c @ 647:b39c14581166

[xemacs-hg @ 2001-08-13 04:45:47 by ben] removal of unsigned, size_t, etc.
author ben
date Mon, 13 Aug 2001 04:46:48 +0000
parents 183866b06e0b
children fdefd0186b75
line wrap: on
line diff
--- a/src/symbols.c	Wed Aug 08 12:15:04 2001 +0000
+++ b/src/symbols.c	Mon Aug 13 04:46:48 2001 +0000
@@ -3274,9 +3274,9 @@
   int i;
 
   if (multiword_predicate_p)
-    assert (len + 1 < sizeof (temp));
+    assert (len + 1 < (int) sizeof (temp));
   else
-    assert (len < sizeof (temp));
+    assert (len < (int) sizeof (temp));
   strcpy (temp, name + 1); /* Remove initial Q */
   if (multiword_predicate_p)
     {
@@ -3349,7 +3349,7 @@
   char temp[500];
   int len = strlen (name);
 
-  assert (len < sizeof (temp));
+  assert (len < (int) sizeof (temp));
   strcpy (temp, name);
   temp[1] = ':'; /* it's an underscore in the C variable */
 
@@ -3485,7 +3485,7 @@
   int i;
   int len = strlen (name) - 1;
 
-  assert (len < sizeof (temp));
+  assert (len < (int) sizeof (temp));
   strcpy (temp, name + 1); /* Remove initial Q */
   temp[0] = toupper (temp[0]);
   for (i = 0; i < len; i++)