fixed minor cast warning

dev
Yann Collet 2017-05-27 17:09:06 -07:00
parent e071159101
commit b6dec4c3ae
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbThreads)
cctx->sectionSize = 0;
cctx->overlapRLog = 3;
cctx->factory = POOL_create(nbThreads, 1);
cctx->jobs = malloc(nbJobs * sizeof(*cctx->jobs));
cctx->jobs = (ZSTDMT_jobDescription*) malloc(nbJobs * sizeof(*cctx->jobs));
cctx->buffPool = ZSTDMT_createBufferPool(nbThreads);
cctx->cctxPool = ZSTDMT_createCCtxPool(nbThreads);
if (!cctx->factory | !cctx->jobs | !cctx->buffPool | !cctx->cctxPool) {