summaryrefslogtreecommitdiffstats
path: root/common/lz_compress_tmpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/lz_compress_tmpl.c')
-rw-r--r--common/lz_compress_tmpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/lz_compress_tmpl.c b/common/lz_compress_tmpl.c
index ea878ffd..6db53872 100644
--- a/common/lz_compress_tmpl.c
+++ b/common/lz_compress_tmpl.c
@@ -296,7 +296,7 @@ match: // RLE or dictionary (both are encoded by distance from ref (-1) a
PIXEL x = *ref;
while ((ip < ip_bound) && (ref < ref_limit)) { // TODO: maybe separate a run from
// the same seg or from different
- // ones in order to spare
+ // ones in order to spare
// ref < ref_limit
if (!SAME_PIXEL(*ref, x)) {
ref++;