Commit 039d267b authored by Austin English's avatar Austin English Committed by Alexandre Julliard

preloader: Fix a typo in error message.

parent 97dea5bd
...@@ -831,7 +831,7 @@ static void map_so_lib( const char *name, struct wld_link_map *l) ...@@ -831,7 +831,7 @@ static void map_so_lib( const char *name, struct wld_link_map *l)
fatal_error("%s: not an x86-64 ELF binary... don't know how to load it\n", name ); fatal_error("%s: not an x86-64 ELF binary... don't know how to load it\n", name );
#elif defined(__aarch64__) #elif defined(__aarch64__)
if( header->e_machine != EM_AARCH64 ) if( header->e_machine != EM_AARCH64 )
fatal_error("%s: not an aarchs64 ELF binary... don't know how to load it\n", name ); fatal_error("%s: not an aarch64 ELF binary... don't know how to load it\n", name );
#endif #endif
if (header->e_phnum > sizeof(loadcmds)/sizeof(loadcmds[0])) if (header->e_phnum > sizeof(loadcmds)/sizeof(loadcmds[0]))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment