libc/lzf: Fix an error introduced in coding standard conversion.

(cherry picked from commit 8879116fe85558520c4811dc4ab780b28e66810d)
This commit is contained in:
Gregory Nutt 2018-03-15 07:50:45 -06:00
parent 573887d4ee
commit d3cf5de5f4

View File

@ -263,8 +263,11 @@ unsigned int lzf_decompress (FAR const void *const in_data,
*op++ = *ref++;
case 1:
*op++ = *ref++;
case 0:
/* two octets more */
/* Two octets more */
*op++ = *ref++;
*op++ = *ref++;
}