tests/fuzz: change ZSTD_BLOCKSIZE_ABSOLUTEMAX into ZSTD_BLOCKSIZE_MAX

ZSTD_BLOCKSIZE_ABSOLUTEMAX is changed at the commit:
fa3671eac7
dev
Eiichi Tsukata 2017-09-01 16:35:43 +09:00
parent 6639395979
commit 7492e7f1c7
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#include "fuzz_helpers.h" #include "fuzz_helpers.h"
#include "zstd.h" #include "zstd.h"
static size_t const kBufSize = ZSTD_BLOCKSIZE_ABSOLUTEMAX; static size_t const kBufSize = ZSTD_BLOCKSIZE_MAX;
static ZSTD_DStream *dstream = NULL; static ZSTD_DStream *dstream = NULL;
static void* buf = NULL; static void* buf = NULL;