Re: [libvirt] [PATCH 2/2] virutil: fix virGetSCSIHostNumber stub return type

2014-10-30 Thread Roman Bogorodskiy
John Ferlan wrote: On 10/29/2014 02:20 PM, Roman Bogorodskiy wrote: The virGetSCSIHostNumber function return type is int, however its stubbed version returns NULL. That results in a build fail on systems that uses the stubbed version. Fix by using a proper return type. ---

[libvirt] [PATCH 2/2] virutil: fix virGetSCSIHostNumber stub return type

2014-10-29 Thread Roman Bogorodskiy
The virGetSCSIHostNumber function return type is int, however its stubbed version returns NULL. That results in a build fail on systems that uses the stubbed version. Fix by using a proper return type. --- src/util/virutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [libvirt] [PATCH 2/2] virutil: fix virGetSCSIHostNumber stub return type

2014-10-29 Thread John Ferlan
[I realized I only sent this directly Roman - so I'll put it on list too] On 10/29/2014 02:20 PM, Roman Bogorodskiy wrote: The virGetSCSIHostNumber function return type is int, however its stubbed version returns NULL. That results in a build fail on systems that uses the stubbed version.