]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed minor c89 warning
authorYann Collet <cyan@fb.com>
Sat, 21 Jan 2023 02:04:20 +0000 (18:04 -0800)
committerYann Collet <cyan@fb.com>
Sat, 21 Jan 2023 02:04:20 +0000 (18:04 -0800)
introduced due to parallel merges

lib/common/huf.h

index 3d574bbecab69ebfbc7457a15bede3574d13a11e..5ab79db7af37c5c8f1578950bf91e4076a2d690d 100644 (file)
@@ -107,7 +107,7 @@ typedef enum {
      * If set: Don't use assembly implementations
      * If unset: Allow using assembly implementations
      */
-    HUF_flags_disableAsm = (1 << 4),
+    HUF_flags_disableAsm = (1 << 4)
 } HUF_flags_e;