summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2011-05-10 12:53:06 -0700
committerRandall Spangler <rspangler@chromium.org>2011-05-10 12:56:01 -0700
commit4dd03035c2cd9deeaebac68bf7181fe50dc30237 (patch)
tree6ea660475d2d6fc74311e3277b0bd9852a934cdc
parent9243e616d727c3e57525f8dec2b5f22840900451 (diff)
downloadvboot-4dd03035c2cd9deeaebac68bf7181fe50dc30237.tar.gz
Fix build break
BUG=none TEST=emerge-x86-generic vboot_reference Change-Id: Ic34f0aedbb6522e2ac4bbea3cb33f303435a0d33 Reviewed-on: http://gerrit.chromium.org/gerrit/608 Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Tested-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--firmware/lib/vboot_firmware.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/lib/vboot_firmware.c b/firmware/lib/vboot_firmware.c
index 9a39c052..d56cba77 100644
--- a/firmware/lib/vboot_firmware.c
+++ b/firmware/lib/vboot_firmware.c
@@ -368,9 +368,9 @@ int LoadFirmware(LoadFirmwareParams* params) {
shared->firmware_index = (uint8_t)params->firmware_index;
retval = LOAD_FIRMWARE_SUCCESS;
} else {
- UINT8 a = shared->check_fw_a_result;
- UINT8 b = shared->check_fw_b_result;
- UINT8 best_check;
+ uint8_t a = shared->check_fw_a_result;
+ uint8_t b = shared->check_fw_b_result;
+ uint8_t best_check;
/* No good firmware, so go to recovery mode. */
VBDEBUG(("Alas, no good firmware.\n"));