svn commit: r439848 - head/sysutils/cdrdao/files

Marius Strobl marius at FreeBSD.org
Sun Apr 30 21:32:52 UTC 2017


Author: marius
Date: Sun Apr 30 21:32:50 2017
New Revision: 439848
URL: https://svnweb.freebsd.org/changeset/ports/439848

Log:
  Fix another piece of code to build with -std=c++11.

Added:
  head/sysutils/cdrdao/files/patch-xdao_CdDevice.cc   (contents, props changed)

Added: head/sysutils/cdrdao/files/patch-xdao_CdDevice.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/cdrdao/files/patch-xdao_CdDevice.cc	Sun Apr 30 21:32:50 2017	(r439848)
@@ -0,0 +1,11 @@
+--- xdao/CdDevice.cc.orig	2009-02-21 13:49:17 UTC
++++ xdao/CdDevice.cc
+@@ -255,7 +255,7 @@ int CdDevice::updateStatus()
+ 
+ bool CdDevice::updateProgress(Glib::IOCondition cond, int fd)
+ {
+-  static char msgSync[4] = { 0xff, 0x00, 0xff, 0x00 };
++  static unsigned char msgSync[4] = { 0xff, 0x00, 0xff, 0x00 };
+   fd_set fds;
+   int state = 0;
+   char buf[10];


More information about the svn-ports-head mailing list