diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-04-08 15:05:09 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-04-11 14:11:17 +0000 |
commit | e32cea15c8534faa817f32cd3dd9ae89e44f6d98 (patch) | |
tree | 99760af645b045180ed301be17729823c730b3e5 /util/cbfstool | |
parent | ba91cd33b69d8cf28b6813c5a8ed29961f42964e (diff) | |
download | coreboot-e32cea15c8534faa817f32cd3dd9ae89e44f6d98.tar.xz |
util/cbfstool: Print types on stdout
Currently, "cbfstool -h | less" doesn't show any file types under
"TYPEs:". That's because the file types are printed with
print_supported_filetypes, which uses LOG, which prints to stderr. Use
printf print_supported_filetypes, and thus print to stdout, to make the
usage output more normal.
Change-Id: I800c9205c59383b63a640bc0798a1bd9117b0f99
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/25589
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/cbfstool')
-rw-r--r-- | util/cbfstool/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cbfstool/common.c b/util/cbfstool/common.c index 5a47c2f45b..72ff745f1d 100644 --- a/util/cbfstool/common.c +++ b/util/cbfstool/common.c @@ -173,9 +173,9 @@ void print_supported_filetypes(void) int i, number = ARRAY_SIZE(filetypes); for (i=0; i<number; i++) { - LOG(" %s%c", filetypes[i].name, (i==(number-1))?'\n':','); + printf(" %s%c", filetypes[i].name, (i==(number-1))?'\n':','); if ((i%8) == 7) - LOG("\n"); + printf("\n"); } } |