diff options
author | Martin Roth <martinroth@google.com> | 2016-12-06 14:28:44 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-12-09 00:35:51 +0100 |
commit | c01ff74a6a1e641b2f7e1e73da1742a500be7805 (patch) | |
tree | d8a029145c45d82ad546add32c8a6a1f3e3afcea /util/kconfig | |
parent | 21c99af0c82fc8fd00b91e8bea6a454f0cd251ac (diff) |
util/kconfig/conf.c: Fix newline in error printf
For some reason the \n in the defconfig save error was not escaped.
Change-Id: I6a76b258f461a194fe17aae2b4fa04326b46d8d6
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/17742
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@googlemail.com>
Diffstat (limited to 'util/kconfig')
-rw-r--r-- | util/kconfig/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/kconfig/conf.c b/util/kconfig/conf.c index c421773114..7aae1c7b57 100644 --- a/util/kconfig/conf.c +++ b/util/kconfig/conf.c @@ -705,7 +705,7 @@ int main(int ac, char **av) } } else if (input_mode == savedefconfig) { if (conf_write_defconfig(defconfig_file)) { - fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"), + fprintf(stderr, _("\n*** Error while saving defconfig to: %s\n\n"), defconfig_file); return 1; } |