summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-03-01 10:20:24 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-03-02 14:35:01 +0100
commitad926ba4035d671b7aa5a4cf09eb5098986330a1 (patch)
tree20b87ab4bf269302f153e6b98f7931c0ac64aeac
parent994329b0b26d31b8fd9984c2205534ee4c26508b (diff)
downloadbarebox-ad926ba4035d671b7aa5a4cf09eb5098986330a1.tar.gz
barebox-ad926ba4035d671b7aa5a4cf09eb5098986330a1.tar.xz
bootm: add missing space in error message
There is no space between the "at" and the hex base address currently. Fix the formatting. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20220301092024.3368293-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--common/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bootm.c b/common/bootm.c
index 4652467448..3c80e8bf94 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -113,7 +113,7 @@ int bootm_load_os(struct image_data *data, unsigned long load_address)
load_address, kernel_size);
if (!data->os_res) {
pr_err("unable to request SDRAM region for kernel at"
- "0x%08llx-0x%08llx\n",
+ " 0x%08llx-0x%08llx\n",
(unsigned long long)load_address,
(unsigned long long)load_address + kernel_size - 1);
return -ENOMEM;