mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-21 08:50:27 +00:00
hv: fixed by replace ull to ul.
ul is used as immediate integer suffix with type uint64_t. Tracked-On: #3214 Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
This commit is contained in:
@@ -1420,7 +1420,7 @@ static int32_t vlapic_read(struct acrn_vlapic *vlapic, uint32_t offset_arg, uint
|
||||
struct lapic_regs *lapic = &(vlapic->apic_page);
|
||||
uint32_t i;
|
||||
uint32_t offset = offset_arg;
|
||||
*data = 0ULL;
|
||||
*data = 0UL;
|
||||
|
||||
if (offset > sizeof(*lapic)) {
|
||||
ret = -EACCES;
|
||||
|
Reference in New Issue
Block a user