Skip to content

Commit

Permalink
eliminate compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Dec 4, 2022
1 parent 25c3265 commit 6db8b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coders/jxl.c
Expand Up @@ -535,7 +535,7 @@ static Image *ReadJXLImage(const ImageInfo *image_info,ExceptionInfo *exception)
*/
exif_profile=AcquireStringInfo((size_t) size);
p=GetStringInfoDatum(exif_profile);
status=JxlDecoderSetBoxBuffer(jxl_info,p,size);
jxl_status=JxlDecoderSetBoxBuffer(jxl_info,p,size);
offset=(unsigned int) (*p) << 24;
offset|=(unsigned int) (*(p+1)) << 16;
offset|=(unsigned int) (*(p+2)) << 8;
Expand Down

0 comments on commit 6db8b9f

Please sign in to comment.