From: Allen Hai Date: Fri, 26 Oct 2018 21:16:06 +0000 (-0500) Subject: vertically align code comment X-Git-Tag: v1.3.8~64^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1392%2Fhead;p=thirdparty%2Fzstd.git vertically align code comment --- diff --git a/lib/zstd.h b/lib/zstd.h index a1eac0c0b..d7646fdaf 100644 --- a/lib/zstd.h +++ b/lib/zstd.h @@ -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;