mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-11 13:49:39 +00:00
hv: use uint32_t replace "unsigned int"
Since it's typedef in "include/lib/types.h" Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
@@ -124,7 +124,7 @@ again:
|
||||
*/
|
||||
for (i = 0, j = 0; i < map_size / desc_size; i++) {
|
||||
EFI_MEMORY_DESCRIPTOR *d;
|
||||
unsigned int e820_type = 0;
|
||||
uint32_t e820_type = 0;
|
||||
|
||||
d = (EFI_MEMORY_DESCRIPTOR *)((unsigned long)map_buf + (i * desc_size));
|
||||
switch(d->Type) {
|
||||
|
Reference in New Issue
Block a user