diff options
-rw-r--r-- | lld/ELF/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp index a37a9261784..b95795e031e 100644 --- a/lld/ELF/Driver.cpp +++ b/lld/ELF/Driver.cpp @@ -61,7 +61,7 @@ static std::pair<ELFKind, uint16_t> parseEmulation(StringRef S) { if (S == "aarch64linux") return {ELF64LEKind, EM_AARCH64}; if (S == "i386pe" || S == "i386pep" || S == "thumb2pe") - error("windows targets are not supported on the ELF frontend: " + S); + error("Windows targets are not supported on the ELF frontend: " + S); else error("unknown emulation: " + S); return {ELFNoneKind, 0}; |