Fixed: LzmaDecode, use SizeT typedef

hg/feature/sound
rti 15 years ago
parent 6ff4d15826
commit 6208a8130a

@ -117,7 +117,7 @@
StopCompilingDueBUG StopCompilingDueBUG
#endif #endif
int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, size_t size) int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, SizeT size)
{ {
unsigned char prop0; unsigned char prop0;
if (size < LZMA_PROPERTIES_SIZE) if (size < LZMA_PROPERTIES_SIZE)

@ -68,7 +68,7 @@ typedef struct _CLzmaProperties
#endif #endif
}CLzmaProperties; }CLzmaProperties;
int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, size_t size); int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, SizeT size);
#define LzmaGetNumProbs(Properties) (LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((Properties)->lc + (Properties)->lp))) #define LzmaGetNumProbs(Properties) (LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((Properties)->lc + (Properties)->lp)))

Loading…
Cancel
Save