diff options
author | Tom Rini <trini@konsulko.com> | 2020-11-19 10:23:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-19 10:23:50 -0500 |
commit | b80680633dc954d32f81f3afacd3d1f2f3d290b0 (patch) | |
tree | c551b408e9b714348c1f4f34b14a23d4641021b8 /common/common_fit.c | |
parent | e800d715e01daffa9a5078c974f4568d6ef9e7c3 (diff) | |
parent | dd4866b43754b18f0c06672e341d93e16b8bf674 (diff) |
Merge branch '2020-11-18-assorted-fixes'
- Assorted SquashFS fixes and cleanups
- Fixes for various Coverity issues
- Various fixups to other platforms / code
Diffstat (limited to 'common/common_fit.c')
-rw-r--r-- | common/common_fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common_fit.c b/common/common_fit.c index a9933081007..219674d4673 100644 --- a/common/common_fit.c +++ b/common/common_fit.c @@ -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; } |