Re: [libvirt] [PATCH 7/7] Require spaces around equality comparisons

2014-03-18 Thread Martin Kletzander
On Mon, Mar 17, 2014 at 09:44:45AM -0600, Eric Blake wrote: On 03/17/2014 08:39 AM, Martin Kletzander wrote: Commit a1cbe4b5 added a check for spaces around assignments and this patch extends it to checks for spaces around '=='. One exception is virAssertCmpInt where comma after '==' is

[libvirt] [PATCH 7/7] Require spaces around equality comparisons

2014-03-17 Thread Martin Kletzander
Commit a1cbe4b5 added a check for spaces around assignments and this patch extends it to checks for spaces around '=='. One exception is virAssertCmpInt where comma after '==' is aceptable (since it is a macro and '==' is its argument). Signed-off-by: Martin Kletzander mklet...@redhat.com ---

Re: [libvirt] [PATCH 7/7] Require spaces around equality comparisons

2014-03-17 Thread Eric Blake
On 03/17/2014 08:39 AM, Martin Kletzander wrote: Commit a1cbe4b5 added a check for spaces around assignments and this patch extends it to checks for spaces around '=='. One exception is virAssertCmpInt where comma after '==' is aceptable (since it is a s/aceptable/acceptable/ macro and '=='