summaryrefslogtreecommitdiffstats
path: root/lib/xxhash.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xxhash.c')
-rw-r--r--lib/xxhash.c4
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 ***/