Skip to content

Commit c203463

Browse files
committed
Fix compile error
1 parent f85359b commit c203463

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/common/core/compression/CompressionCenter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,7 @@ Optional<Data> CompressionCenter::trainDict(DictId dictId, TrainDataEnumerator d
161161
allData.buffer(),
162162
dataSizes.data(),
163163
(unsigned) dataSizes.size(),
164-
&params,
165-
NULL);
164+
&params);
166165
if (ZSTD_isError(dictSize)) {
167166
Error error(Error::Code::ZstdError, Error::Level::Error, "Train dict failed");
168167
error.infos.insert_or_assign("ZSTDErrorCode", dictSize);

0 commit comments

Comments
 (0)