mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 17:33:08 +08:00
libc/lzf: Another trivial coding standard fix.
This commit is contained in:
+4
-2
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user