Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 569344 | Differences between
and this patch

Collapse All | Expand All

(-)cdrdao-1.2.3.orig/dao/CdrDriver.cc (-1 / +1 lines)
Lines 495-501 Link Here
495
  0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0
495
  0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0
496
};
496
};
497
497
498
char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
498
unsigned char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
499
499
500
500
501
/* Maps a string to the corresponding driver option value 
501
/* Maps a string to the corresponding driver option value 
(-)cdrdao-1.2.3.orig/dao/CdrDriver.h (-1 / +1 lines)
Lines 440-446 Link Here
440
  bool fullBurn_;
440
  bool fullBurn_;
441
441
442
  static unsigned char syncPattern[12];
442
  static unsigned char syncPattern[12];
443
  static char REMOTE_MSG_SYNC_[4];
443
  unsigned static char REMOTE_MSG_SYNC_[4];
444
444
445
  static int speed2Mult(int);
445
  static int speed2Mult(int);
446
  static int mult2Speed(int);
446
  static int mult2Speed(int);
(-)cdrdao-1.2.3.orig/xdao/CdDevice.cc (-1 / +1 lines)
Lines 255-261 Link Here
255
255
256
bool CdDevice::updateProgress(Glib::IOCondition cond, int fd)
256
bool CdDevice::updateProgress(Glib::IOCondition cond, int fd)
257
{
257
{
258
  static char msgSync[4] = { 0xff, 0x00, 0xff, 0x00 };
258
  unsigned static char msgSync[4] = { 0xff, 0x00, 0xff, 0x00 };
259
  fd_set fds;
259
  fd_set fds;
260
  int state = 0;
260
  int state = 0;
261
  char buf[10];
261
  char buf[10];

Return to bug 569344