| Index: core/src/fpdfapi/fpdf_font/ttgsubtable.cpp
|
| diff --git a/core/src/fpdfapi/fpdf_font/ttgsubtable.cpp b/core/src/fpdfapi/fpdf_font/ttgsubtable.cpp
|
| index ab15c47cb3ab49e5cf57ad3bf30e092cc39b92c4..b6b2f57c025325566d64a48165a0e13d1a234ba5 100644
|
| --- a/core/src/fpdfapi/fpdf_font/ttgsubtable.cpp
|
| +++ b/core/src/fpdfapi/fpdf_font/ttgsubtable.cpp
|
| @@ -48,7 +48,7 @@ void CFX_GlyphMap::SetAt(int key, int value)
|
| }
|
| FX_BOOL CFX_GlyphMap::Lookup(int key, int &value)
|
| {
|
| - FX_LPVOID pResult = FXSYS_bsearch(&key, m_Buffer.GetBuffer(), m_Buffer.GetSize() / sizeof(_IntPair),
|
| + void* pResult = FXSYS_bsearch(&key, m_Buffer.GetBuffer(), m_Buffer.GetSize() / sizeof(_IntPair),
|
| sizeof(_IntPair), _CompareInt);
|
| if (pResult == NULL) {
|
| return FALSE;
|
|
|