From: Jeremy Kerr Date: Mon, 23 Sep 2013 09:11:10 +0000 (+0800) Subject: discover/boot: Fix log message with no newline X-Git-Tag: v1.0.0~482 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=209b10507b8f95f9f549ecb81158034038334c36 discover/boot: Fix log message with no newline Signed-off-by: Jeremy Kerr --- diff --git a/discover/boot.c b/discover/boot.c index e7a72d4..583d141 100644 --- a/discover/boot.c +++ b/discover/boot.c @@ -290,7 +290,7 @@ int boot(void *ctx, struct discover_boot_option *opt, struct boot_command *cmd, } else if (opt && opt->boot_image) { image = opt->boot_image->url; } else { - pb_log("%s: no image specified", __func__); + pb_log("%s: no image specified\n", __func__); return -1; }