summaryrefslogtreecommitdiff
blob: d878cec07f514d570625e8261bf1f73b4c264a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/common/image.cc
+++ b/common/image.cc
@@ -180,7 +180,7 @@
 	}
 	jpeg_create_decompress(&cinfo);
 	jpeg_mem_src(&cinfo, data.data(), data.size());
-	if (jpeg_read_header(&cinfo, true) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string());
+	if (jpeg_read_header(&cinfo, TRUE) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string());
 	jpeg_start_decompress(&cinfo);
 	bitmap.resize(cinfo.output_width, cinfo.output_height);
 	unsigned stride = (bitmap.width * 3 + 3) & ~3;  // Number of bytes per row (word-aligned)