summaryrefslogtreecommitdiffhomepage
path: root/Private/FirmwareKit
diff options
context:
space:
mode:
Diffstat (limited to 'Private/FirmwareKit')
-rw-r--r--Private/FirmwareKit/EFI/API.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/FirmwareKit/EFI/API.hxx b/Private/FirmwareKit/EFI/API.hxx
index 4cf8e603..b17e7afd 100644
--- a/Private/FirmwareKit/EFI/API.hxx
+++ b/Private/FirmwareKit/EFI/API.hxx
@@ -67,7 +67,7 @@ inline UInt32 Platform() noexcept { return kPEMachineAMD64; }
inline void ThrowError(const EfiCharType *ErrorCode,
const EfiCharType *Reason) noexcept {
#ifdef __DEBUG__
- ST->ConOut->OutputString(ST->ConOut, L"\r\n*** STOP ***\r\n");
+ ST->ConOut->OutputString(ST->ConOut, L"\r*** STOP ***\r");
ST->ConOut->OutputString(ST->ConOut, L"*** Error: ");
ST->ConOut->OutputString(ST->ConOut, ErrorCode);
@@ -75,7 +75,7 @@ inline void ThrowError(const EfiCharType *ErrorCode,
ST->ConOut->OutputString(ST->ConOut, L", Reason: ");
ST->ConOut->OutputString(ST->ConOut, Reason);
- ST->ConOut->OutputString(ST->ConOut, L" ***\r\n");
+ ST->ConOut->OutputString(ST->ConOut, L" ***\r");
#endif // ifdef __DEBUG__
#ifdef __NEWBOOT__