diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-07-26 16:10:22 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-07-31 16:18:05 -0400 |
commit | 8b608d2f5a1b3552363a3161566645a409ff8530 (patch) | |
tree | b9717123f978a7f404b3245a67418d0e4e1cd1f3 /arch/i386/boot | |
parent | 8218d029c58b89837a24b4e1362c33d0ba7450b5 (diff) |
[x86 setup] Newline after setup signature failure message
End the "No setup signature found..." with a newline (the puts
routine will automatically add a carriage return.)
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/i386/boot')
-rw-r--r-- | arch/i386/boot/header.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/boot/header.S b/arch/i386/boot/header.S index 32ce54a03d2..7f4a2c53bd7 100644 --- a/arch/i386/boot/header.S +++ b/arch/i386/boot/header.S @@ -280,4 +280,4 @@ die: .section ".initdata", "a" setup_corrupt: .byte 7 - .string "No setup signature found..." + .string "No setup signature found...\n" |