Skip to content

Commit cc3940d

Browse files
committed
- Fixt type error for github buildsystem
1 parent f824bc9 commit cc3940d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GZip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class GZipPack
8282
void InitBuffer(const uint8_t* pIn, uint32_t nInCount)
8383
{
8484
m_strm.avail_in = nInCount;
85-
m_strm.next_in = pIn;
85+
m_strm.next_in = reinterpret_cast<const Bytef*>(pIn);
8686
}
8787

8888
int Inflate(unsigned char* pOut, size_t* pnOutCount, int nFlush)

0 commit comments

Comments
 (0)