summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2010-10-18 01:31:05 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2010-10-18 01:31:05 +0200
commitda6e015fb95689de06f861119a32939b1db7b2b9 (patch)
tree2a52391230ea7fd9f26084110fc4e6391e85f4b2 /boot
parent0b32d1eb64aeb9684b4f0800f9c1fdbe5d6c7b00 (diff)
Add \n to boot error message
* boot/boot.c (main): Print \n after printing boot_script_error_string().
Diffstat (limited to 'boot')
-rw-r--r--boot/boot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/boot.c b/boot/boot.c
index 1a4e1b12..68ba2461 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -730,6 +730,7 @@ main (int argc, char **argv, char **envp)
int i = strlen (str);
write (2, str, i);
+ write (2, "\n", 1);
host_exit (1);
}
free (buf);