~ruther/guix-local

ref: 84fcfb9f4f7a69dc0ecd5871e5e36d978ecedce0 guix-local/gnu/packages/patches/dbus-c++-gcc-compat.patch -rw-r--r-- 433 bytes
84fcfb9f — unmush gnu: Add mono-5.1.0. 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Fix a string comparison in C++ 11.

Taken from Debian:
https://sources.debian.org/src/dbus-c++/0.9.0-8.1/debian/patches/06_fix_gcc-7_ftbfs.patch/

--- a/src/pipe.cpp
+++ b/src/pipe.cpp
@@ -83,5 +83,5 @@ ssize_t Pipe::read(void *buffer, unsigne
 void Pipe::signal()
 {
   // TODO: ignoring return of read/write generates warning; maybe relevant for eventloop work...
-  ::write(_fd_write, '\0', 1);
+  ::write(_fd_write, "\0", 1);
 }