util/nvramtool/cli/nvramtool.c: Add newline to error message

"CMOS parameter touchpad not found" string needs '\n' termination.

Change-Id: Ied431dbc9f94d82e1f4716cfb89ea3d6cf513703
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/6553
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Paul Menzel 2014-08-09 09:33:59 +02:00 committed by Martin Roth
parent 0581a6759d
commit 7fbe6ae900
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ static void set_one_param(const char name[], const char value[])
unsigned long long n;
if (is_checksum_name(name) || (e = find_cmos_entry(name)) == NULL) {
fprintf(stderr, "%s: CMOS parameter %s not found.", prog_name,
fprintf(stderr, "%s: CMOS parameter %s not found.\n", prog_name,
name);
exit(1);
}