Commit df091ef0 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

windowscodecs: Remove useless casts to long.

parent a80c5491
......@@ -460,8 +460,7 @@ DGifGetImageDesc(GifFileType * GifFile) {
GifFile->ImageCount++;
Private->PixelCount = (long)GifFile->Image.Width *
(long)GifFile->Image.Height;
Private->PixelCount = GifFile->Image.Width * GifFile->Image.Height;
DGifSetupDecompress(GifFile); /* Reset decompress algorithm parameters. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment