[U-Boot] [PATCH] fit: Add missing CR in debug output in	fit_find_config_node()
    Stefan Roese 
    sr at denx.de
       
    Thu Nov  8 06:00:31 UTC 2018
    
    
  
Testing has shown that a line-break is missing in one debug line in
fit_find_config_node().
Signed-off-by: Stefan Roese <sr at 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 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;
 	}
 
-- 
2.19.1
    
    
More information about the U-Boot
mailing list