Skip to content

Commit

Permalink
fit: Add missing CR in debug output in fit_find_config_node()
Browse files Browse the repository at this point in the history
Testing has shown that a line-break is missing in one debug line in
fit_find_config_node().

Signed-off-by: Stefan Roese <[email protected]>
  • Loading branch information
stroese authored and trini committed Nov 9, 2018
1 parent 711720a commit 6514bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/common_fit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 6514bfc

Please sign in to comment.