[BACK]Return to diff.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

Diff for /src/usr.bin/rcs/diff.c between version 1.10 and 1.11

version 1.10, 2006/09/27 06:25:46 version 1.11, 2007/02/22 08:30:45
Line 536 
Line 536 
         u_int numtries;          u_int numtries;
   
         /* XXX move the isqrt() out of the macro to avoid multiple calls */          /* XXX move the isqrt() out of the macro to avoid multiple calls */
         const u_int bound = (flags & D_MINIMAL) ? UINT_MAX : MAX(256, isqrt(n));          const u_int bound = (flags & D_MINIMAL) ? UINT_MAX :
               MAX(256, (u_int)isqrt(n));
   
         k = 0;          k = 0;
         if ((ret = newcand(0, 0, 0)) < 0)          if ((ret = newcand(0, 0, 0)) < 0)

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11