projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc36a12
)
x86/EFI: Add newline to the end of graphics mode error message
author
Daniel Kiper
<daniel.kiper@oracle.com>
Mon, 11 Aug 2014 13:13:04 +0000
(15:13 +0200)
committer
Jan Beulich
<jbeulich@suse.com>
Mon, 11 Aug 2014 13:13:04 +0000
(15:13 +0200)
Error message related to graphics mode does not have new line.
So, let's fix it.
Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
xen/arch/x86/efi/boot.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/efi/boot.c
b/xen/arch/x86/efi/boot.c
index 2b515f2953acd720b37fa4853b6ff651a319c304..3bdc15820a41085c44e3861e916fa2061a5e7c0e 100644
(file)
--- a/
xen/arch/x86/efi/boot.c
+++ b/
xen/arch/x86/efi/boot.c
@@
-1360,7
+1360,7
@@
efi_start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
break;
/* fall through */
default:
- PrintErr(L"Current graphics mode is unsupported!");
+ PrintErr(L"Current graphics mode is unsupported!
\r\n
");
status = EFI_UNSUPPORTED;
break;
}