summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-10-07 13:53:05 -0600
committerBrian Paul <brianp@vmware.com>2015-10-07 13:53:43 -0600
commit464e175a4f42c128918bf303d0e34dc92cfc8792 (patch)
tree206cbd941ac3340bf7aafbbcf276c20cb298fd30
parent2ac202f3e55c376159d0100b73a050d4c2e78da4 (diff)
ext_packed_depth_stencil/readdrawpixels: add missing \n in printf strings
Trivial.
-rw-r--r--tests/spec/ext_packed_depth_stencil/readdrawpixels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/spec/ext_packed_depth_stencil/readdrawpixels.c b/tests/spec/ext_packed_depth_stencil/readdrawpixels.c
index e701b88af..10c8a6182 100644
--- a/tests/spec/ext_packed_depth_stencil/readdrawpixels.c
+++ b/tests/spec/ext_packed_depth_stencil/readdrawpixels.c
@@ -64,7 +64,7 @@ test_readdrawpixels(void)
for (i = 0; i < 4; i++) {
if (image[i] != readback[i]) {
printf("Image returned by glReadPixels didn't match"
- " the expected result (0x%x != 0x%x)",
+ " the expected result (0x%x != 0x%x)\n",
readback[i], image[i]);
return false;
}
@@ -83,7 +83,7 @@ test_readdrawpixels(void)
for (i = 0; i < 4; i++) {
if (readback[i] != 0xffffff02) {
printf("Image returned by glReadPixels didn't match"
- " the expected result (0x%x != 0xffffff02)",
+ " the expected result (0x%x != 0xffffff02)\n",
readback[i]);
return false;
}