acrn-hypervisor/hypervisor/common
Mingqiang Chi 666430a3d4 hv:fix "missing for discarded return value" for memset
No need to check the return value for memset
code like this:
int a(void) {
	return 0;
}
int b(void){
	a();
}
fix as follow:
int a(void) {
	return 0;
}
int b(void){
	(void)a();
}

Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
2018-07-05 14:14:48 +08:00
..
hv_main.c HV:common:add suffix U to the numeric constant 2018-07-05 11:29:46 +08:00
hypercall.c hv:fix "missing for discarded return value" for memset 2018-07-05 14:14:48 +08:00
io_request.c HV:common:add suffix U to the numeric constant 2018-07-05 11:29:46 +08:00
ptdev.c HV:common:fix "expression is not Boolean" 2018-06-20 14:19:47 +08:00
schedule.c HV:common:fix "signed/unsigned conversion without cast" 2018-07-04 12:18:38 +08:00
stack_protector.c HV:common:fix "expression is not Boolean" 2018-06-20 14:19:47 +08:00
trusty_hypercall.c HV:common:transfer local variable type 2018-06-29 09:49:29 +08:00
vm_load.c hv:fix "missing for discarded return value" for memset 2018-07-05 14:14:48 +08:00