]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed minor strict pedantic C90 issue
authorYann Collet <yann.collet.73@gmail.com>
Wed, 23 Oct 2024 04:49:35 +0000 (21:49 -0700)
committerYann Collet <cyan@fb.com>
Wed, 23 Oct 2024 18:50:57 +0000 (11:50 -0700)
lib/compress/zstd_preSplit.c

index 4ca30dfceeb46ccb7c68b33ce0d3bb6bdc02b3fe..e8994dcde9fdd7cf91a75084edad21e42ddda6f8 100644 (file)
@@ -66,8 +66,8 @@ FORCE_INLINE_TEMPLATE void addEvents_generic(Fingerprint* fp, const void* src, s
         addEvents_generic(fp, src, srcSize, _rate);                                     \
     }
 
-ZSTD_GEN_ADDEVENTS_SAMPLE(1);
-ZSTD_GEN_ADDEVENTS_SAMPLE(5);
+ZSTD_GEN_ADDEVENTS_SAMPLE(1)
+ZSTD_GEN_ADDEVENTS_SAMPLE(5)
 
 
 typedef void (*addEvents_f)(Fingerprint* fp, const void* src, size_t srcSize);