diff options
author | Lei Zhang <thestig@chromium.org> | 2017-04-03 17:27:11 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-04 13:12:18 +0000 |
commit | e115b2e6a892e0af3b011475c0deed093284e7b4 (patch) | |
tree | 97b9a48fc579803368f1f963b9b7d4553515bac6 /core/fxcodec/codec/ccodec_gifmodule.cpp | |
parent | bb4a1bc09f92f781deefae5dc187fef21d6957fd (diff) | |
download | pdfium-e115b2e6a892e0af3b011475c0deed093284e7b4.tar.xz |
Remove unneeded void* casts.
Change-Id: Icf6b0ec88dfc8dc707b18ca4ad25dd77610b4c91
Reviewed-on: https://pdfium-review.googlesource.com/3622
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.cpp')
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.cpp b/core/fxcodec/codec/ccodec_gifmodule.cpp index caa21e1424..ca9fd07ba6 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.cpp +++ b/core/fxcodec/codec/ccodec_gifmodule.cpp @@ -92,13 +92,13 @@ FXGIF_Context* CCodec_GifModule::Start() { p->m_AllocFunc = gif_alloc_func; p->m_FreeFunc = gif_free_func; p->gif_ptr = nullptr; - p->parent_ptr = (void*)this; + p->parent_ptr = this; p->gif_ptr = gif_create_decompress(); if (!p->gif_ptr) { FX_Free(p); return nullptr; } - p->gif_ptr->context_ptr = (void*)p; + p->gif_ptr->context_ptr = p; p->gif_ptr->err_ptr = m_szLastError; p->gif_ptr->gif_error_fn = gif_error_data; p->gif_ptr->gif_ask_buf_for_pal_fn = gif_ask_buf_for_pal; |