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

Diff for /src/usr.bin/diff3/diff3prog.c between version 1.18 and 1.19

version 1.18, 2016/10/16 13:03:40 version 1.19, 2016/10/18 21:06:52
Line 301 
Line 301 
         d1 = d13;          d1 = d13;
         d2 = d23;          d2 = d23;
         j = 0;          j = 0;
         while ((t1 = (d1 < d13 + m1)) | (t2 = (d2 < d23 + m2))) {          for (;;) {
                   t1 = (d1 < d13 + m1);
                   t2 = (d2 < d23 + m2);
                   if (!t1 && !t2)
                           break;
   
                 if (debug) {                  if (debug) {
                         printf("%d,%d=%d,%d %d,%d=%d,%d\n",                          printf("%d,%d=%d,%d %d,%d=%d,%d\n",
                         d1->old.from,d1->old.to,                          d1->old.from,d1->old.to,

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19