Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pavlov <ipavlov@users.sourceforge.net>2010-11-02 03:00:00 +0300
committerKornel LesiƄski <kornel@geekhood.net>2016-05-28 02:16:04 +0300
commitc65230d8585317f7cd58ae2982067385269fdee9 (patch)
tree436513094ff5034da4c88def9609f0ea376065c6 /CPP/7zip/Archive/MachoHandler.cpp
parent2eb60a059819da595efb8e1de49f04c241f5b981 (diff)
9.189.18
Diffstat (limited to 'CPP/7zip/Archive/MachoHandler.cpp')
-rwxr-xr-xCPP/7zip/Archive/MachoHandler.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/CPP/7zip/Archive/MachoHandler.cpp b/CPP/7zip/Archive/MachoHandler.cpp
index ad4a5afb..a6261f34 100755
--- a/CPP/7zip/Archive/MachoHandler.cpp
+++ b/CPP/7zip/Archive/MachoHandler.cpp
@@ -77,16 +77,16 @@ static const char *g_FileTypes[] =
static const CUInt32PCharPair g_Flags[] =
{
- { (UInt32)1 << 31, "PURE_INSTRUCTIONS" },
- { 1 << 30, "NO_TOC" },
- { 1 << 29, "STRIP_STATIC_SYMS" },
- { 1 << 28, "NO_DEAD_STRIP" },
- { 1 << 27, "LIVE_SUPPORT" },
- { 1 << 26, "SELF_MODIFYING_CODE" },
- { 1 << 25, "DEBUG" },
- { 1 << 10, "SOME_INSTRUCTIONS" },
- { 1 << 9, "EXT_RELOC" },
- { 1 << 8, "LOC_RELOC" }
+ { 31, "PURE_INSTRUCTIONS" },
+ { 30, "NO_TOC" },
+ { 29, "STRIP_STATIC_SYMS" },
+ { 28, "NO_DEAD_STRIP" },
+ { 27, "LIVE_SUPPORT" },
+ { 26, "SELF_MODIFYING_CODE" },
+ { 25, "DEBUG" },
+ { 10, "SOME_INSTRUCTIONS" },
+ { 9, "EXT_RELOC" },
+ { 8, "LOC_RELOC" }
};
static const CUInt32PCharPair g_MachinePairs[] =