summaryrefslogtreecommitdiffstats
path: root/cli_output.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2010-03-13 17:28:29 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-03-13 17:28:29 +0000
commit439597032eae0f41745d9173805945c5c85475eb (patch)
tree76c0a1816f51012775006aa8c82bdfe78901b5ab /cli_output.c
parent645c6df21a9570da7f8ac07fe740a0df3a1d4d1c (diff)
downloadast2050-flashrom-439597032eae0f41745d9173805945c5c85475eb.zip
ast2050-flashrom-439597032eae0f41745d9173805945c5c85475eb.tar.gz
Various coding style and cosmetic changes
- Fix coding-style, whitespace, and indentation in a few places. - Consistently use the same spelling ("Super I/O") everywhere. Corresponding to flashrom svn r933. - Make some flashrom stdout output look a bit nicer. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'cli_output.c')
-rw-r--r--cli_output.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cli_output.c b/cli_output.c
index 2ced043..b3d4e04 100644
--- a/cli_output.c
+++ b/cli_output.c
@@ -27,25 +27,25 @@ int print(int type, const char *fmt, ...)
va_list ap;
int ret;
FILE *output_type;
-
- switch (type)
- {
+
+ switch (type) {
case MSG_ERROR:
output_type = stderr;
break;
case MSG_BARF:
- if (verbose < 2) return 0;
+ if (verbose < 2)
+ return 0;
case MSG_DEBUG:
- if (verbose < 1) return 0;
+ if (verbose < 1)
+ return 0;
case MSG_INFO:
default:
output_type = stdout;
break;
}
-
+
va_start(ap, fmt);
ret = vfprintf(output_type, fmt, ap);
va_end(ap);
return ret;
}
-
OpenPOWER on IntegriCloud