From: Vadim Zeitlin Date: Tue, 31 Oct 2006 12:51:02 +0000 (+0000) Subject: removed unused Tell() call X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1cda5c7e62be5b0a31cc964fabbcbca4367dd8cf removed unused Tell() call git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/gifdecod.cpp b/src/common/gifdecod.cpp index e520174b4d..0b53e9c627 100644 --- a/src/common/gifdecod.cpp +++ b/src/common/gifdecod.cpp @@ -869,7 +869,6 @@ wxGIFErrorCode wxGIFDecoder::LoadGIF(wxInputStream& stream) if ((buf[8] & 0x80) == 0x80) { unsigned int local_ncolors = 2 << (buf[8] & 0x07); - wxFileOffset pos = stream.TellI(); wxFileOffset numBytes = 3 * local_ncolors; stream.SeekI(numBytes, wxFromCurrent); }