summaryrefslogtreecommitdiffstats
path: root/system/p7zip/gcc10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'system/p7zip/gcc10.patch')
-rw-r--r--system/p7zip/gcc10.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/system/p7zip/gcc10.patch b/system/p7zip/gcc10.patch
new file mode 100644
index 0000000000..d9571cc230
--- /dev/null
+++ b/system/p7zip/gcc10.patch
@@ -0,0 +1,22 @@
+https://sourceforge.net/p/p7zip/bugs/226/
+
+--- a/CPP/Windows/ErrorMsg.cpp 2020-05-28 00:35:02.729896917 +0200
++++ b/CPP/Windows/ErrorMsg.cpp 2020-05-28 00:40:01.676442629 +0200
+@@ -13,7 +13,7 @@
+ const char * txt = 0;
+ AString msg;
+
+- switch(errorCode) {
++ switch(HRESULT(errorCode)) {
+ case ERROR_NO_MORE_FILES : txt = "No more files"; break ;
+ case E_NOTIMPL : txt = "E_NOTIMPL"; break ;
+ case E_NOINTERFACE : txt = "E_NOINTERFACE"; break ;
+@@ -43,7 +43,7 @@
+ const char * txt = 0;
+ AString msg;
+
+- switch(messageID) {
++ switch(HRESULT(messageID)) {
+ case ERROR_NO_MORE_FILES : txt = "No more files"; break ;
+ case E_NOTIMPL : txt = "E_NOTIMPL"; break ;
+ case E_NOINTERFACE : txt = "E_NOINTERFACE"; break ;