summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-03-21 14:07:24 (GMT)
committerYann Collet <cyan@fb.com>2018-03-21 14:07:24 (GMT)
commit863e24892d853ea8100c9224c8f3a0c917e055c7 (patch)
tree23b8ad8672e239e74cff4637bb8ca6114c82f43b /lib/lz4frame.c
parent1faa7e2698e73864aa20729caba8071148af5b4c (diff)
downloadlz4-863e24892d853ea8100c9224c8f3a0c917e055c7.zip
lz4-863e24892d853ea8100c9224c8f3a0c917e055c7.tar.gz
lz4-863e24892d853ea8100c9224c8f3a0c917e055c7.tar.bz2
fix comment style
Diffstat (limited to 'lib/lz4frame.c')
-rw-r--r--lib/lz4frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index b91cb7c..a080fa6 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -202,8 +202,8 @@ typedef struct LZ4F_cctx_s
U64 totalInSize;
XXH32_state_t xxh;
void* lz4CtxPtr;
- U16 lz4CtxAlloc; // sized for: 0 = none, 1 = lz4 ctx, 2 = lz4hc ctx
- U16 lz4CtxState; // in use as: 0 = none, 1 = lz4 ctx, 2 = lz4hc ctx
+ U16 lz4CtxAlloc; /* sized for: 0 = none, 1 = lz4 ctx, 2 = lz4hc ctx */
+ U16 lz4CtxState; /* in use as: 0 = none, 1 = lz4 ctx, 2 = lz4hc ctx */
} LZ4F_cctx_t;