ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/bmpfile.c
(Generate patch)

Comparing ray/src/common/bmpfile.c (file contents):
Revision 2.6 by greg, Sat Mar 27 16:33:31 2004 UTC vs.
Revision 2.7 by schorsch, Tue Mar 30 16:24:25 2004 UTC

# Line 753 | Line 753 | BMPwriteScanline(BMPWriter *bw)
753                          break;
754                  val = *sp;                      /* output run */
755                  for (cnt = 1; cnt < 255; cnt++)
756 <                        if (!--n | *++sp != val)
756 >                        if ((!--n) | (*++sp != val))
757                                  break;
758                  wrbyte(cnt, bw);
759                  wrbyte(val, bw);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines