summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorStefan Weil2011-09-12 22:33:01 +0200
committerAnthony Liguori2011-09-16 15:25:56 +0200
commitb2bedb214469af55179d907a60cd67fed6b0779e (patch)
tree45f926e05105467a707f75b9706bc5c1b094cbe9 /tests
parentbuild: Move tracing objects into libuser on usermode emulation targets (diff)
downloadqemu-b2bedb214469af55179d907a60cd67fed6b0779e.tar.gz
qemu-b2bedb214469af55179d907a60cd67fed6b0779e.tar.xz
qemu-b2bedb214469af55179d907a60cd67fed6b0779e.zip
Remove blanks before \n in output strings
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 Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test-i386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-i386.c b/tests/test-i386.c
index 9cb5b51b76..8e64bbaf38 100644
--- a/tests/test-i386.c
+++ b/tests/test-i386.c
@@ -802,7 +802,7 @@ void test_fcmp(double a, double b)
"fstsw %%ax\n"
: "=a" (fpus)
: "t" (a), "u" (b));
- printf("fcom(%f %f)=%04lx \n",
+ printf("fcom(%f %f)=%04lx\n",
a, b, fpus & (0x4500 | FPUS_EMASK));
fpu_clear_exceptions();
asm("fucom %2\n"