Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Apr 2017 21:32:51 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439848 - head/sysutils/cdrdao/files
Message-ID:  <201704302132.v3ULWpwW079499@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704302132.v3ULWpwW079499>