libc/lzf: Another trivial coding standard fix.

This commit is contained in:
Gregory Nutt
2018-03-15 10:47:00 -06:00
parent 43ba19025d
commit 5fc6178201
+4 -2
View File
@@ -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);
}