Commit 8102d886 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Diego Biurrun

tiff: Prefer enum TiffCompr over int for TiffContext.compr.

This is safer and helps debugging.
Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 5f0bb0ba
......@@ -42,7 +42,7 @@ typedef struct TiffContext {
int width, height;
unsigned int bpp;
int le;
int compr;
enum TiffCompr compr;
int invert;
int fax_opts;
int predictor;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment