Skip to content

Commit 0699577

Browse files
authored
Merge pull request facebook#979 from facebook/memdoc
Update API documentation related to memory management capabilities
2 parents 1edf337 + 292eeb6 commit 0699577

File tree

2 files changed

+95
-136
lines changed

2 files changed

+95
-136
lines changed

lib/compress/zstd_compress.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2416,7 +2416,6 @@ ZSTD_CDict* ZSTD_initStaticCDict(void* workspace, size_t workspaceSize,
24162416
+ cctxSize;
24172417
ZSTD_CDict* const cdict = (ZSTD_CDict*) workspace;
24182418
void* ptr;
2419-
DEBUGLOG(4, "(size_t)workspace & 7 : %u", (U32)(size_t)workspace & 7);
24202419
if ((size_t)workspace & 7) return NULL; /* 8-aligned */
24212420
DEBUGLOG(4, "(workspaceSize < neededSize) : (%u < %u) => %u",
24222421
(U32)workspaceSize, (U32)neededSize, (U32)(workspaceSize < neededSize));

0 commit comments

Comments
 (0)