[libvirt] [PATCH 2/5] lxc: Avoid Coverity SIZEOF_MISMATCH

2015-09-04 Thread John Ferlan
Commit id '692e9fac7' used virProcessSetNamespaces instead of inlining the similar functionality; however, Coverity notes that the function prototype expects a size_t value and not an enum and complains. So, just pass as a size_t to avoid the noise. Signed-off-by: John Ferlan

Re: [libvirt] [PATCH 2/5] lxc: Avoid Coverity SIZEOF_MISMATCH

2015-09-04 Thread Laine Stump
On 09/04/2015 10:30 AM, John Ferlan wrote: Commit id '692e9fac7' used virProcessSetNamespaces instead of inlining the similar functionality; however, Coverity notes that the function prototype expects a size_t value and not an enum and complains. So, just pass as a size_t to avoid the noise.

Re: [libvirt] [PATCH 2/5] lxc: Avoid Coverity SIZEOF_MISMATCH

2015-09-04 Thread John Ferlan
On 09/04/2015 01:41 PM, Laine Stump wrote: > On 09/04/2015 10:30 AM, John Ferlan wrote: >> Commit id '692e9fac7' used virProcessSetNamespaces instead of inlining >> the similar functionality; however, Coverity notes that the function >> prototype expects a size_t value and not an enum and