commit | 5cf27fc05a44c7b82cddd55f92adc7aa077f8ffc | [log] [tgz] |
---|---|---|
author | Michael Walle <michael@walle.cc> | Mon Nov 16 22:01:31 2020 +0100 |
committer | Tom Rini <trini@konsulko.com> | Thu Nov 19 09:45:49 2020 -0500 |
tree | 2ac4d72171f4275cf5f6fd0228241325357b3b8f | |
parent | 4ec40da7496ca9ee83a6c20c8ff7a6964e70a7df [diff] |
common: fit: add missing newline The debug statement doesn't end with a newline. Add it. Signed-off-by: Michael Walle <michael@walle.cc>
diff --git a/common/common_fit.c b/common/common_fit.c index a993308..219674d 100644 --- a/common/common_fit.c +++ b/common/common_fit.c
@@ -67,7 +67,7 @@ if (board_fit_config_name_match(name)) continue; - debug("Selecting config '%s'", name); + debug("Selecting config '%s'\n", name); return node; }