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;
 	}