mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 07:35:31 +00:00
hv: use int32_t replace 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:
@@ -259,7 +259,7 @@ void free(const void *ptr)
|
||||
}
|
||||
}
|
||||
|
||||
void *memchr(const void *void_s, int c, size_t n)
|
||||
void *memchr(const void *void_s, int32_t c, size_t n)
|
||||
{
|
||||
uint8_t val = (uint8_t)c;
|
||||
uint8_t *ptr = (uint8_t *)void_s;
|
||||
|
||||
Reference in New Issue
Block a user