summaryrefslogtreecommitdiff
path: root/cbtable.c
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2013-01-04 22:54:07 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2013-01-04 22:54:07 +0000
commit4f76e2f91d69dae46c42155d65b80e1d0f2bbdfc (patch)
tree7ac561c734007cfe88577cdad895f87524e3184f /cbtable.c
parentfc2c3133fbb24b2e770c6f3bea0a850272a70bbe (diff)
downloadflashrom-4f76e2f91d69dae46c42155d65b80e1d0f2bbdfc.tar.gz
Introduce msg_*warn.
Also, unify all outputs of "Warning:" and "Error:" to use normal capitalization instead of mixing it with all capitals. Signed-off-by: Stefan Tauner <stefan.tauner@student.tuwien.ac.at> Acked-by: Idwer Vollering <vidwer@gmail.com> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1643 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'cbtable.c')
-rw-r--r--cbtable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cbtable.c b/cbtable.c
index b859e68..e262a84 100644
--- a/cbtable.c
+++ b/cbtable.c
@@ -96,9 +96,9 @@ int cb_check_image(uint8_t *image, int size)
if (!strcasecmp(image_vendor, cb_vendor) && !strcasecmp(image_model, cb_model)) {
msg_pdbg2("This coreboot image matches this mainboard.\n");
} else {
- msg_pinfo("WARNING: This coreboot image (%s:%s) does not appear to\n"
- " be correct for the detected mainboard (%s:%s).\n",
- image_vendor, image_model, cb_vendor, cb_model);
+ msg_perr("This coreboot image (%s:%s) does not appear to\n"
+ "be correct for the detected mainboard (%s:%s).\n",
+ image_vendor, image_model, cb_vendor, cb_model);
return -1;
}