summaryrefslogtreecommitdiff
path: root/util/intelmetool
diff options
context:
space:
mode:
authorMatthias Gazzari <mail@qtux.eu>2018-05-21 19:37:55 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-05-22 07:15:47 +0000
commit04864c7fd0fddf1ce3dca9ba77435f9f49985029 (patch)
tree4c85a7b6047d25c0dc75317d7f74b0c3312f905a /util/intelmetool
parent3d38695e5db09e7148b3d48556d0c6a9e959f78c (diff)
downloadcoreboot-04864c7fd0fddf1ce3dca9ba77435f9f49985029.tar.xz
util/intelmetool: Fix missing comma
Change-Id: I4cb70c2aa466ac71dc8fcd25a7c1824696f32909 Signed-off-by: Matthias Gazzari <mail@qtux.eu> Reviewed-on: https://review.coreboot.org/26449 Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/intelmetool')
-rw-r--r--util/intelmetool/me.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/intelmetool/me.c b/util/intelmetool/me.c
index 4867bbcbf7..ee2b46a317 100644
--- a/util/intelmetool/me.c
+++ b/util/intelmetool/me.c
@@ -417,7 +417,7 @@ int mkhi_get_fw_version(int *major, int *minor)
printf("ME: GET FW VERSION message failed\n");
return -1;
}
- printf("ME: Firmware Version %u.%u (code)\n\n"
+ printf("ME: Firmware Version %u.%u (code)\n\n",
version.code_major, version.code_minor);
#endif
if (major)