diff options
author | Yann Collet <cyan@fb.com> | 2020-11-13 18:53:59 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2020-11-13 18:57:40 (GMT) |
commit | b7c6fc9f6194a1dd78ffc8406b83ea68a155845a (patch) | |
tree | 6c431864043ea765e28d7f86215e8c9c7cee28af /lib/lz4frame.h | |
parent | 80751571ae235869dc5b91a5f7f8ec8d6a119ee0 (diff) | |
download | lz4-b7c6fc9f6194a1dd78ffc8406b83ea68a155845a.zip lz4-b7c6fc9f6194a1dd78ffc8406b83ea68a155845a.tar.gz lz4-b7c6fc9f6194a1dd78ffc8406b83ea68a155845a.tar.bz2 |
minor refactor of lz4io
for readability.
Mostly around --list capability
Diffstat (limited to 'lib/lz4frame.h')
-rw-r--r-- | lib/lz4frame.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h index 6e91e2d..4573317 100644 --- a/lib/lz4frame.h +++ b/lib/lz4frame.h @@ -108,7 +108,7 @@ LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return /*-************************************ * Frame compression types - **************************************/ + ************************************* */ /* #define LZ4F_ENABLE_OBSOLETE_ENUMS // uncomment to enable obsolete enums */ #ifdef LZ4F_ENABLE_OBSOLETE_ENUMS # define LZ4F_OBSOLETE_ENUM(x) , LZ4F_DEPRECATE(x) = LZ4F_##x @@ -118,7 +118,8 @@ LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return /* The larger the block size, the (slightly) better the compression ratio, * though there are diminishing returns. - * Larger blocks also increase memory usage on both compression and decompression sides. */ + * Larger blocks also increase memory usage on both compression and decompression sides. + */ typedef enum { LZ4F_default=0, LZ4F_max64KB=4, |