diff --git a/libc/lzf/lzf_d.c b/libc/lzf/lzf_d.c index 8e682461077..386b95c6691 100644 --- a/libc/lzf/lzf_d.c +++ b/libc/lzf/lzf_d.c @@ -249,10 +249,12 @@ unsigned int lzf_decompress (FAR const void *const in_data, } else { - /* Overlapping, use octte by octte copying */ + /* Overlapping, use octet by octet copying */ do - *op++ = *ref++; + { + *op++ = *ref++; + } while (--len); }