Blame SOURCES/cdrdao-1.2.3-narrowing.patch

a7e54e
diff -up wrk/dao/CdrDriver.cc.wrk wrk/dao/CdrDriver.cc
a7e54e
--- wrk/dao/CdrDriver.cc.wrk	2016-02-16 14:06:23.158392345 +0100
a7e54e
+++ wrk/dao/CdrDriver.cc	2016-02-16 14:07:11.654597254 +0100
a7e54e
@@ -495,7 +495,7 @@ unsigned char CdrDriver::syncPattern[12]
a7e54e
   0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0
a7e54e
 };
a7e54e
 
a7e54e
-char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
a7e54e
+unsigned char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
a7e54e
 
a7e54e
 
a7e54e
 /* Maps a string to the corresponding driver option value 
a7e54e
diff -up wrk/dao/CdrDriver.h.wrk wrk/dao/CdrDriver.h
a7e54e
--- wrk/dao/CdrDriver.h.wrk	2016-02-16 14:21:18.454174199 +0100
a7e54e
+++ wrk/dao/CdrDriver.h	2016-02-16 14:21:42.381275268 +0100
a7e54e
@@ -440,7 +440,7 @@ protected:
a7e54e
   bool fullBurn_;
a7e54e
 
a7e54e
   static unsigned char syncPattern[12];
a7e54e
-  static char REMOTE_MSG_SYNC_[4];
a7e54e
+  static unsigned char REMOTE_MSG_SYNC_[4];
a7e54e
 
a7e54e
   static int speed2Mult(int);
a7e54e
   static int mult2Speed(int);