Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 42770
Collapse All | Expand All

(-)cdrdao-1.1.8/trackdb/lec.cc.cast (-1 / +1 lines)
Lines 278-284 Link Here
278
  u_int32_t crc = 0;
278
  u_int32_t crc = 0;
279
279
280
  while (len--) {
280
  while (len--) {
281
    crc = CRCTABLE[(crc ^ *data++) & 0xffL] ^ (crc >> 8);
281
    crc = CRCTABLE[(int)((crc ^ *data++) & 0xffL)] ^ (crc >> 8);
282
  }
282
  }
283
283
284
  return crc;
284
  return crc;

Return to bug 42770