From 6514bfc298fd0ad0f4c591861e340f6d61a98158 Mon Sep 17 00:00:00 2001
From: Stefan Roese <sr@denx.de>
Date: Thu, 8 Nov 2018 07:00:31 +0100
Subject: [PATCH] fit: Add missing CR in debug output in fit_find_config_node()

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(-)

diff --git a/common/common_fit.c b/common/common_fit.c
index 577b352554..08b51eaffc 100644
--- a/common/common_fit.c
+++ b/common/common_fit.c
@@ -73,7 +73,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;
 	}
 
-- 
2.39.5