From 4dd03035c2cd9deeaebac68bf7181fe50dc30237 Mon Sep 17 00:00:00 2001 From: Randall Spangler Date: Tue, 10 May 2011 12:53:06 -0700 Subject: [PATCH] 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 Tested-by: Randall Spangler --- firmware/lib/vboot_firmware.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/lib/vboot_firmware.c b/firmware/lib/vboot_firmware.c index 9a39c052f0..d56cba77b4 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"));