diff mbox series

[U-Boot] fit: Add missing CR in debug output in fit_find_config_node()

Message ID 20181108060031.20289-1-sr@denx.de
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot] fit: Add missing CR in debug output in fit_find_config_node() | expand

Commit Message

Stefan Roese Nov. 8, 2018, 6 a.m. UTC
Testing has shown that a line-break is missing in one debug line in
fit_find_config_node().

Signed-off-by: Stefan Roese <sr@denx.de>
---
 common/common_fit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Nov. 9, 2018, 6:43 p.m. UTC | #1
On Thu, Nov 08, 2018 at 07:00:31AM +0100, Stefan Roese wrote:

> Testing has shown that a line-break is missing in one debug line in
> fit_find_config_node().
> 
> Signed-off-by: Stefan Roese <sr@denx.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/common/common_fit.c b/common/common_fit.c
index c92d675a0b..3d90eef516 100644
--- a/common/common_fit.c
+++ b/common/common_fit.c
@@ -76,7 +76,7 @@  int fit_find_config_node(const void *fdt)
 	}
 
 	if (dflt_conf_node != -ENOENT) {
-		debug("Selecting default config '%s'", dflt_conf_desc);
+		debug("Selecting default config '%s'\n", dflt_conf_desc);
 		return dflt_conf_node;
 	}