summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glean/ttexture_srgb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glean/ttexture_srgb.cpp b/src/glean/ttexture_srgb.cpp
index 10909c0..a79019c 100644
--- a/src/glean/ttexture_srgb.cpp
+++ b/src/glean/ttexture_srgb.cpp
@@ -128,9 +128,9 @@ TextureSRGBTest::testImageTransfer(void)
env->log << "Expected value at ["
<< j
<< "] should be "
- << image[j]
+ << (int) image[j]
<< " found "
- << image2[j]
+ << (int) image2[j]
<< "\n";
delete [] image;
return false;