This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
forked from EddyPronk/gub
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from hahnjo/arch-linux-2020
Fixes for Arch Linux, Edition 2020
- Loading branch information
Showing
4 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- p7zip-9.20.1.src.all.orig/CPP/Windows/Error.cpp 2020-07-25 15:25:33.720387509 +0200 | ||
+++ p7zip-9.20.1.src.all/CPP/Windows/Error.cpp 2020-07-25 15:26:56.104520466 +0200 | ||
@@ -14,14 +14,14 @@ | ||
AString msg; | ||
|
||
switch(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 ; | ||
- case E_ABORT : txt = "E_ABORT"; break ; | ||
- case E_FAIL : txt = "E_FAIL"; break ; | ||
- case STG_E_INVALIDFUNCTION : txt = "STG_E_INVALIDFUNCTION"; break ; | ||
- case E_OUTOFMEMORY : txt = "E_OUTOFMEMORY"; break ; | ||
- case E_INVALIDARG : txt = "E_INVALIDARG"; break ; | ||
+ case unsigned (ERROR_NO_MORE_FILES) : txt = "No more files"; break ; | ||
+ case unsigned (E_NOTIMPL) : txt = "E_NOTIMPL"; break ; | ||
+ case unsigned (E_NOINTERFACE) : txt = "E_NOINTERFACE"; break ; | ||
+ case unsigned (E_ABORT) : txt = "E_ABORT"; break ; | ||
+ case unsigned (E_FAIL) : txt = "E_FAIL"; break ; | ||
+ case unsigned (STG_E_INVALIDFUNCTION) : txt = "STG_E_INVALIDFUNCTION"; break ; | ||
+ case unsigned (E_OUTOFMEMORY) : txt = "E_OUTOFMEMORY"; break ; | ||
+ case unsigned (E_INVALIDARG) : txt = "E_INVALIDARG"; break ; | ||
default: | ||
txt = strerror(messageID); | ||
} |