
28 Jan
2016
28 Jan
'16
3:35 p.m.
On 01/28/2016 03:21 AM, Andrea Bolognani wrote:
The affected functions are:
virPCIDeviceGetManaged() virPCIDeviceGetUnbindFromStub() virPCIDeviceGetRemoveSlot() virPCIDeviceGetReprobe()
Change their return type from unsigned int to bool: the corresponding members in struct _virPCIDevice are defined as bool, and even the corresponding virPCIDeviceSet*() functions take a bool value as input so there's no point in these functions having unsigned int as return type.
Suggested-by: John Ferlan <jferlan@redhat.com> --- src/util/virpci.c | 8 ++++---- src/util/virpci.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-)
ACK John