diff options
author | Stefan Roese <sr@denx.de> | 2018-11-08 07:00:31 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-09 10:44:50 -0500 |
commit | 6514bfc298fd0ad0f4c591861e340f6d61a98158 (patch) | |
tree | b7cc71178ad6d4f29714c2f1f0adfaf2ed2b5945 /common/common_fit.c | |
parent | 711720a0b3943ac9e7e3b122e8903bc6a3b039a4 (diff) | |
download | u-boot-6514bfc298fd0ad0f4c591861e340f6d61a98158.tar.gz |
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>
Diffstat (limited to 'common/common_fit.c')
-rw-r--r-- | common/common_fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |