summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-cdr/cdrdao/files/cdrdao-1.1.8-cast.patch')
-rw-r--r--app-cdr/cdrdao/files/cdrdao-1.1.8-cast.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/app-cdr/cdrdao/files/cdrdao-1.1.8-cast.patch b/app-cdr/cdrdao/files/cdrdao-1.1.8-cast.patch
deleted file mode 100644
index 60d0deb63c44..000000000000
--- a/app-cdr/cdrdao/files/cdrdao-1.1.8-cast.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cdrdao-1.1.8/trackdb/lec.cc.cast 2004-02-20 10:56:53.505801360 +0100
-+++ cdrdao-1.1.8/trackdb/lec.cc 2004-02-20 11:00:26.328447400 +0100
-@@ -278,7 +278,7 @@
- u_int32_t crc = 0;
-
- while (len--) {
-- crc = CRCTABLE[(crc ^ *data++) & 0xffL] ^ (crc >> 8);
-+ crc = CRCTABLE[(int)((crc ^ *data++) & 0xffL)] ^ (crc >> 8);
- }
-
- return crc;