Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
cristy committed Nov 2, 2014
1 parent 1588d79 commit 0a2af03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coders/dcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3094,7 +3094,7 @@ static Image *ReadDCMImage(const ImageInfo *image_info,ExceptionInfo *exception)
continue;
}

if (((group << 16) | element) == 0xFFFEE0DD)
if ((unsigned int) ((group << 16) | element) == 0xFFFEE0DD)
{
if (data != (unsigned char *) NULL)
data=(unsigned char *) RelinquishMagickMemory(data);
Expand Down

0 comments on commit 0a2af03

Please sign in to comment.