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/dao/CdrDriver.cc.unsignedchar (-1 / +1 lines)
Lines 495-501 unsigned char CdrDriver::syncPattern[12] 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
char CdrDriver::REMOTE_MSG_SYNC_[4] = { char(0xff), 0x00, char(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/xdao/CdDevice.cc.unsignedchar (-1 / +1 lines)
Lines 255-261 int CdDevice::updateStatus() 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
  static char msgSync[4] = { char(0xff), 0x00, char(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