diff src/rangetab.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 190b164ddcac
children e38acbeb1cae
line wrap: on
line diff
--- a/src/rangetab.c	Wed Aug 08 12:15:04 2001 +0000
+++ b/src/rangetab.c	Mon Aug 13 04:46:48 2001 +0000
@@ -204,7 +204,7 @@
     {
       /* RIGHT might not point to a valid entry (i.e. it's at the end
 	 of the list), so NEWPOS must round down. */
-      unsigned int newpos = (left + right) >> 1;
+      int newpos = (left + right) >> 1;
       struct range_table_entry *entry = tab + newpos;
       if (pos > entry->last)
 	left = newpos+1;