archive: use int as second parameter for LookToRead2_CreateVTable

This commit is contained in:
scribam 2021-03-27 21:29:42 +01:00
parent e4a084b290
commit 3cdff93e26
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ bool SzArchive::Open(const char* path)
return false;
#endif
FileInStream_CreateVTable(&archiveStream);
LookToRead2_CreateVTable(&lookStream, false);
LookToRead2_CreateVTable(&lookStream, 0);
lookStream.buf = (Byte *)ISzAlloc_Alloc(&g_Alloc, kInputBufSize);
if (lookStream.buf == NULL)
{