Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Oct 21, 2023
1 parent 3372255 commit 4a0699f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coders/bmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ static Image *ReadBMPImage(const ImageInfo *image_info,ExceptionInfo *exception)
unsigned short
*p16;

p16=(unsigned short *) pixels+(image->rows-y-1)*bytes_per_line;
p16=(unsigned short *) (pixels+(image->rows-y-1)*bytes_per_line);
q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
if (q == (PixelPacket *) NULL)
break;
Expand Down

0 comments on commit 4a0699f

Please sign in to comment.