diff options
author | 2016-09-23 21:27:47 +0200 | |
---|---|---|
committer | 2016-09-23 21:30:25 +0200 | |
commit | 9de7d87e87c1620e47287d65d9c75dffce150d80 (patch) | |
tree | d25cff923800ea51c60b5069c2ac217b062519c4 /sys-fs/e4rat/files | |
parent | www-servers/tornado: Version bump (diff) | |
download | gentoo-9de7d87e87c1620e47287d65d9c75dffce150d80.tar.gz gentoo-9de7d87e87c1620e47287d65d9c75dffce150d80.tar.bz2 gentoo-9de7d87e87c1620e47287d65d9c75dffce150d80.zip |
sys-fs/e4rat: Fix compilation with gcc6 (#594046 by Peter Levine)
Package-Manager: portage-2.3.0
Diffstat (limited to 'sys-fs/e4rat/files')
-rw-r--r-- | sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch b/sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch new file mode 100644 index 000000000000..cdf14e5c92eb --- /dev/null +++ b/sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch @@ -0,0 +1,11 @@ +--- e4rat-0.2.4_pre20141201/src/logging.hh.old 2016-09-21 22:01:37.631925077 -0400 ++++ e4rat-0.2.4_pre20141201/src/logging.hh 2016-09-21 22:01:44.351086734 -0400 +@@ -93,7 +93,7 @@ + #define dump_log(...) logger.write(__VA_ARGS__) + + #ifdef DEBUG_ENABLED +- #define debug(format,args...) dump_log(Debug, "%s:%d in %s(): "format, __FILE__, __LINE__, __FUNCTION__, ## args) ++ #define debug(format,args...) dump_log(Debug, "%s:%d in %s(): " format, __FILE__, __LINE__, __FUNCTION__, ## args) + #else + #define debug(format,args...) + #endif |