]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
provide consistent spacing to enum field
authorAllen Hai <allenhai03@gmail.com>
Thu, 25 Oct 2018 23:45:20 +0000 (18:45 -0500)
committerAllen Hai <allenhai03@gmail.com>
Thu, 25 Oct 2018 23:45:20 +0000 (18:45 -0500)
lib/zstd.h

index f2af4ac8c4297b48db7d87e033cc58389053197d..a1eac0c0b0fb3e85b349816e59bdcf3d4a6619f9 100644 (file)
@@ -473,7 +473,7 @@ typedef struct {
 typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params;
 
 typedef enum {
-    ZSTD_dct_auto=0,      /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwise it is "rawContent" */
+    ZSTD_dct_auto = 0,      /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwise it is "rawContent" */
     ZSTD_dct_rawContent,  /* ensures dictionary is always loaded as rawContent, even if it starts with ZSTD_MAGIC_DICTIONARY */
     ZSTD_dct_fullDict     /* refuses to load a dictionary if it does not respect Zstandard's specification */
 } ZSTD_dictContentType_e;