From: Joel Johnson Date: Sun, 26 Apr 2020 02:54:56 +0000 (-0600) Subject: cmd: mvebu: bubt: fix quoted string split across lines X-Git-Tag: v2020.07-rc2~14^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b40745e5c29a45ebe7efce53a1e3ba751d0ef351;p=oweals%2Fu-boot.git cmd: mvebu: bubt: fix quoted string split across lines Update quoted string alignment to address checkpatch.pl warning originally introduced in commit f60a66ef5d7d ("cmd: mvebu: bubt: show image boot device"). Signed-off-by: Joel Johnson Reviewed-by: Simon Glass --- diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c index dc0ce01c35..ef53153c46 100644 --- a/cmd/mvebu/bubt.c +++ b/cmd/mvebu/bubt.c @@ -730,8 +730,8 @@ static int bubt_check_boot_mode(const struct bubt_dev *dst) for (int i = 0; i < ARRAY_SIZE(a38x_boot_modes); i++) { if (a38x_boot_modes[i].id == hdr->blockid) { - printf("Error: A38x image meant to be " - "booted from \"%s\", not \"%s\"!\n", + printf("Error: A38x image meant to be booted from " + "\"%s\", not \"%s\"!\n", a38x_boot_modes[i].name, dst->name); return -ENOEXEC; }