Re: [Qemu-devel] [PATCH RFC 02/10] maint: remove double semicolons in many files

2015-08-14 Thread Daniel P. Berrange
On Thu, Aug 13, 2015 at 06:57:55PM +0100, Peter Maydell wrote: > On 31 July 2015 at 17:30, Daniel P. Berrange wrote: > > A number of source files have statements accidentally > > terminated by a double semicolon - eg 'foo = bar;;'. > > This is harmless but a mistake none the less. > > > > The tcg/

Re: [Qemu-devel] [PATCH RFC 02/10] maint: remove double semicolons in many files

2015-08-13 Thread Peter Maydell
On 31 July 2015 at 17:30, Daniel P. Berrange wrote: > A number of source files have statements accidentally > terminated by a double semicolon - eg 'foo = bar;;'. > This is harmless but a mistake none the less. > > The tcg/ia64/tcg-target.c file is whitelisted because > it has valid use of ';;' in

[Qemu-devel] [PATCH RFC 02/10] maint: remove double semicolons in many files

2015-07-31 Thread Daniel P. Berrange
A number of source files have statements accidentally terminated by a double semicolon - eg 'foo = bar;;'. This is harmless but a mistake none the less. The tcg/ia64/tcg-target.c file is whitelisted because it has valid use of ';;' in a comment containing assembly code. Signed-off-by: Daniel P. B