From d9280afb7dfb39aa6417e7465c3905f2de864bbd Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 20 Jan 2023 18:04:20 -0800 Subject: [PATCH] fixed minor c89 warning introduced due to parallel merges --- lib/common/huf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;