diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-11-09 15:38:02 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-11-09 15:38:02 +0000 |
commit | 653667f9dc9cc0169deeca1a82a60c2e91d5683a (patch) | |
tree | ac900fcbc6efae43f50daa8009f04669eeebe02d /lib/common/fse.h | |
parent | 299df5d48ce3c064ef926ac7814c278bcdc92db0 (diff) |
Diffstat (limited to 'lib/common/fse.h')
-rw-r--r-- | lib/common/fse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/fse.h b/lib/common/fse.h index 1c44f8375078..afd78019635a 100644 --- a/lib/common/fse.h +++ b/lib/common/fse.h @@ -184,7 +184,7 @@ FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize, const sh /*! Constructor and Destructor of FSE_CTable. Note that FSE_CTable size depends on 'tableLog' and 'maxSymbolValue' */ typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than void* */ -FSE_PUBLIC_API FSE_CTable* FSE_createCTable (unsigned tableLog, unsigned maxSymbolValue); +FSE_PUBLIC_API FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog); FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct); /*! FSE_buildCTable(): |