Skip to content

Commit

Permalink
jpeg: fix different boolean type (#988)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 16, 2023
1 parent 588b096 commit e1e3811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/decoder_jpeg.cc
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ InputImage loadJPEG(const char* filename)

//read_raw = false;

cinfo.raw_data_out = read_raw;
cinfo.raw_data_out = boolean(read_raw);

jpeg_start_decompress(&cinfo);

Expand Down

0 comments on commit e1e3811

Please sign in to comment.