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) { ...@@ -460,8 +460,7 @@ DGifGetImageDesc(GifFileType * GifFile) {
GifFile->ImageCount++; GifFile->ImageCount++;
Private->PixelCount = (long)GifFile->Image.Width * Private->PixelCount = GifFile->Image.Width * GifFile->Image.Height;
(long)GifFile->Image.Height;
DGifSetupDecompress(GifFile); /* Reset decompress algorithm parameters. */ 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