diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-12-17 11:32:49 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-12-17 11:32:49 (GMT) |
commit | f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5 (patch) | |
tree | 679a95436fb5a3a3729ad1e674f7e204296b96ef /lib/xxhash.c | |
parent | 0569a68edd58d741e46ec1e50d6dd936de77dbfa (diff) | |
download | lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.zip lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.tar.gz lz4-f68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5.tar.bz2 |
Added : -pedantic compilation option
Diffstat (limited to 'lib/xxhash.c')
-rw-r--r-- | lib/xxhash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xxhash.c b/lib/xxhash.c index a3ee31c..093564c 100644 --- a/lib/xxhash.c +++ b/lib/xxhash.c @@ -542,7 +542,7 @@ XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) { XXH_free(statePtr); return XXH_OK; -}; +} XXH64_state_t* XXH64_createState(void) { @@ -553,7 +553,7 @@ XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) { XXH_free(statePtr); return XXH_OK; -}; +} /*** Hash feed ***/ |