diff options
-rw-r--r-- | sys/boot/efi/libefi/efi_console.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/boot/efi/libefi/efi_console.c b/sys/boot/efi/libefi/efi_console.c index f740d4b..838becc 100644 --- a/sys/boot/efi/libefi/efi_console.c +++ b/sys/boot/efi/libefi/efi_console.c @@ -139,8 +139,7 @@ efi_cons_rawputchar(int c) #ifndef TERM_EMU if (c == '\n') efi_cons_efiputchar('\r'); - else - efi_cons_efiputchar(c); + efi_cons_efiputchar(c); #else switch (c) { case '\r': |