Re: [Qemu-devel] [PATCH] Remove blanks before \n in output strings

2011-09-16 Thread Anthony Liguori
On 09/12/2011 03:33 PM, Stefan Weil wrote: Those blanks violate the coding conventions, see scripts/checkpatch.pl. Blanks missing after colons in the changed lines were added. This patch does not try to fix tabs, long lines and other problems in the changed lines, therefore checkpatch.pl report

Re: [Qemu-devel] [PATCH] Remove blanks before \n in output strings

2011-09-12 Thread Peter Maydell
On 12 September 2011 21:33, Stefan Weil wrote: > Those blanks violate the coding conventions, see > scripts/checkpatch.pl. I can see doing this if there are any cases of actual output-to-users here, but for debug printfs, it scarcely seems worth the effort. I'm not arguing against this particular

[Qemu-devel] [PATCH] Remove blanks before \n in output strings

2011-09-12 Thread Stefan Weil
Those blanks violate the coding conventions, see scripts/checkpatch.pl. Blanks missing after colons in the changed lines were added. This patch does not try to fix tabs, long lines and other problems in the changed lines, therefore checkpatch.pl reports many violations. Signed-off-by: Stefan Wei