mirror of
https://github.com/facebook/zstd.git
synced 2025-07-29 11:21:22 +03:00
Minor fixes; remove formatting only changes
This commit is contained in:
@ -813,7 +813,7 @@ static int basicUnitTests(U32 seed, double compressibility)
|
||||
DISPLAYLEVEL(4, "test%3i : Loading rawContent starting with dict header w/ ZSTD_dm_auto should fail", testNb++);
|
||||
{
|
||||
size_t ret;
|
||||
MEM_writeLE32(dictBuffer+2, ZSTD_MAGIC_DICTIONARY);
|
||||
MEM_writeLE32((char*)dictBuffer+2, ZSTD_MAGIC_DICTIONARY);
|
||||
ret = ZSTD_CCtx_loadDictionary_advanced(
|
||||
cctx, (const char*)dictBuffer+2, dictSize-2, ZSTD_dlm_byRef, ZSTD_dm_auto);
|
||||
if (!ZSTD_isError(ret)) goto _output_error;
|
||||
@ -823,7 +823,7 @@ static int basicUnitTests(U32 seed, double compressibility)
|
||||
DISPLAYLEVEL(4, "test%3i : Loading rawContent starting with dict header w/ ZSTD_dm_rawContent should pass", testNb++);
|
||||
{
|
||||
size_t ret;
|
||||
MEM_writeLE32(dictBuffer+2, ZSTD_MAGIC_DICTIONARY);
|
||||
MEM_writeLE32((char*)dictBuffer+2, ZSTD_MAGIC_DICTIONARY);
|
||||
ret = ZSTD_CCtx_loadDictionary_advanced(
|
||||
cctx, (const char*)dictBuffer+2, dictSize-2, ZSTD_dlm_byRef, ZSTD_dm_rawContent);
|
||||
if (ZSTD_isError(ret)) goto _output_error;
|
||||
|
Reference in New Issue
Block a user