forked from OSchip/llvm-project
parent
b22643a47d
commit
134cc996ae
|
@ -193,7 +193,7 @@ struct file_magic {
|
|||
macho_executable, ///< Mach-O Executable
|
||||
macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
|
||||
macho_core, ///< Mach-O Core File
|
||||
macho_preload_executabl, ///< Mach-O Preloaded Executable
|
||||
macho_preload_executable, ///< Mach-O Preloaded Executable
|
||||
macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
|
||||
macho_dynamic_linker, ///< The Mach-O dynamic linker
|
||||
macho_bundle, ///< Mach-O Bundle file
|
||||
|
|
|
@ -838,7 +838,7 @@ file_magic identify_magic(StringRef magic) {
|
|||
case 2: return file_magic::macho_executable;
|
||||
case 3: return file_magic::macho_fixed_virtual_memory_shared_lib;
|
||||
case 4: return file_magic::macho_core;
|
||||
case 5: return file_magic::macho_preload_executabl;
|
||||
case 5: return file_magic::macho_preload_executable;
|
||||
case 6: return file_magic::macho_dynamically_linked_shared_lib;
|
||||
case 7: return file_magic::macho_dynamic_linker;
|
||||
case 8: return file_magic::macho_bundle;
|
||||
|
|
Loading…
Reference in New Issue