From 5fc617820140ba66938ba3348e41e14a701288e2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 15 Mar 2018 10:47:00 -0600 Subject: [PATCH] libc/lzf: Another trivial coding standard fix. --- libc/lzf/lzf_d.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); }