aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/jpeg
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-02-01 16:39:16 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2016-02-02 08:35:00 -0800
commita8d2f0983ecdea8ff2526c717d6a9b2f06f403d8 (patch)
tree485daa70344be4240e68f89c016231bfdab242d1 /tensorflow/core/lib/jpeg
parent5ff6d34a05b2eb49f7a79a4d0b78ada9a6842b6c (diff)
Minor formatting fixes.
Change: 113582098
Diffstat (limited to 'tensorflow/core/lib/jpeg')
-rw-r--r--tensorflow/core/lib/jpeg/jpeg_mem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/lib/jpeg/jpeg_mem.cc b/tensorflow/core/lib/jpeg/jpeg_mem.cc
index 66e2f749d8..0dddae2459 100644
--- a/tensorflow/core/lib/jpeg/jpeg_mem.cc
+++ b/tensorflow/core/lib/jpeg/jpeg_mem.cc
@@ -540,7 +540,7 @@ bool CompressInternal(const uint8* srcdata, int width, int height,
row_pointer[0] = reinterpret_cast<JSAMPLE*>(const_cast<JSAMPLE*>(r));
}
}
- CHECK_EQ(jpeg_write_scanlines(&cinfo, row_pointer, 1), 1);
+ CHECK_EQ(jpeg_write_scanlines(&cinfo, row_pointer, 1), 1u);
}
jpeg_finish_compress(&cinfo);