diff options
author | Philip Molloy <philip@philipmolloy.com> | 2019-03-31 03:44:57 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-05 08:48:50 -0400 |
commit | 9337a08768dfa0a006382f1d05cf69b5f67f7844 (patch) | |
tree | 1baba7f9058acf8e41a043e6ce0f08dd1b94f644 | |
parent | aeaa4b8f310ef20abea4ee576ade650a102a878d (diff) |
env: add missing newline
Signed-off-by: Philip Molloy <philip@philipmolloy.com>
-rw-r--r-- | tools/env/fw_env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 1ed0f7e9cb..cfada0ee11 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -1742,7 +1742,7 @@ static int parse_config(struct env_opts *opts) if (ENVSIZE(0) != ENVSIZE(1)) { fprintf(stderr, - "Redundant environments have unequal size"); + "Redundant environments have unequal size\n"); return -1; } } |