Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahparker committed Mar 2, 2017
1 parent dc66b3d commit 171c616
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/jpeg-lum.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ int read_jpeg_file(char *filename)
struct jpeg_error_mgr jerr;
JSAMPROW row_pointer[1];
FILE *infile = fopen(filename, "rb");
int i = 0, component = 0;
unsigned int i = 0;
int component = 0;
if (!infile) {
printf("Error opening jpeg file %s\n!", filename);
return -1;
Expand Down

0 comments on commit 171c616

Please sign in to comment.