summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-02-08 10:48:42 -0800
committerH. Peter Anvin <hpa@zytor.com>2008-02-08 10:48:42 -0800
commit9339e963b8a8f200a6e18619c851f1ffa7c5386e (patch)
tree9c0cfea39c5830d84fd0cab5596891b19e7fb10b
parent08c720066eeb9687ce3b9ce024e836ae83bf09e3 (diff)
downloadsyslinux-9339e963b8a8f200a6e18619c851f1ffa7c5386e.tar.gz
Zero-terminate "aborted." string.
The string "aborted." was missing a null terminator.
-rw-r--r--abort.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/abort.inc b/abort.inc
index afbb5476..0f443829 100644
--- a/abort.inc
+++ b/abort.inc
@@ -65,6 +65,6 @@ error_or_command:
jmp enter_command
section .data
-aborted_msg db ' aborted.', CR, LF
+aborted_msg db ' aborted.', CR, LF, 0
section .text