[coreboot-gerrit] Change in coreboot[master]: util/cbfstool: Print types on stdout

Jonathan Neuschäfer (Code Review) gerrit at coreboot.org
Tue Apr 10 15:02:42 CEST 2018


Jonathan Neuschäfer has uploaded this change for review. ( https://review.coreboot.org/25589


Change subject: util/cbfstool: Print types on stdout
......................................................................

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 at gmx.net>
---
M util/cbfstool/common.c
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/25589/1

diff --git a/util/cbfstool/common.c b/util/cbfstool/common.c
index 5a47c2f..72ff745 100644
--- a/util/cbfstool/common.c
+++ b/util/cbfstool/common.c
@@ -173,9 +173,9 @@
 	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");
 	}
 }
 

-- 
To view, visit https://review.coreboot.org/25589
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I800c9205c59383b63a640bc0798a1bd9117b0f99
Gerrit-Change-Number: 25589
Gerrit-PatchSet: 1
Gerrit-Owner: Jonathan Neuschäfer <j.neuschaefer at gmx.net>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180410/14490632/attachment-0001.html>


More information about the coreboot-gerrit mailing list