From: Michael Walle Date: Mon, 16 Nov 2020 21:01:31 +0000 (+0100) Subject: common: fit: add missing newline X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=6a457bb29535c4e743dc4c487caf20a122cea435;p=u-boot.git common: fit: add missing newline The debug statement doesn't end with a newline. Add it. Signed-off-by: Michael Walle --- diff --git a/common/common_fit.c b/common/common_fit.c index a993308100..219674d467 100644 --- a/common/common_fit.c +++ b/common/common_fit.c @@ -67,7 +67,7 @@ int fit_find_config_node(const void *fdt) if (board_fit_config_name_match(name)) continue; - debug("Selecting config '%s'", name); + debug("Selecting config '%s'\n", name); return node; }