From: Yann Collet Date: Sat, 21 Jan 2023 02:04:20 +0000 (-0800) Subject: fixed minor c89 warning X-Git-Tag: v1.5.4^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9280afb7dfb39aa6417e7465c3905f2de864bbd;p=thirdparty%2Fzstd.git fixed minor c89 warning introduced due to parallel merges --- diff --git a/lib/common/huf.h b/lib/common/huf.h index 3d574bbec..5ab79db7a 100644 --- a/lib/common/huf.h +++ b/lib/common/huf.h @@ -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;