common: fit: add missing newline
authorMichael Walle <michael@walle.cc>
Mon, 16 Nov 2020 21:01:31 +0000 (22:01 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 19 Nov 2020 14:45:49 +0000 (09:45 -0500)
The debug statement doesn't end with a newline. Add it.

Signed-off-by: Michael Walle <michael@walle.cc>
common/common_fit.c

index a993308..219674d 100644 (file)
@@ -67,7 +67,7 @@ int fit_find_config_node(const void *fdt)
                if (board_fit_config_name_match(name))
                        continue;
 
-               debug("Selecting config '%s'", name);
+               debug("Selecting config '%s'\n", name);
 
                return node;
        }