fixed minor c89 warning

introduced due to parallel merges
This commit is contained in:
Yann Collet 2023-01-20 18:04:20 -08:00
parent 3d25502c2d
commit d9280afb7d

View 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;