Commit 6514bfc298fd0ad0f4c591861e340f6d61a98158

Authored by Stefan Roese
Committed by Tom Rini
1 parent 711720a0b3

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -73,7 +73,7 @@
73 73 }
74 74  
75 75 if (dflt_conf_node != -ENOENT) {
76   - debug("Selecting default config '%s'", dflt_conf_desc);
  76 + debug("Selecting default config '%s'\n", dflt_conf_desc);
77 77 return dflt_conf_node;
78 78 }
79 79