libc/zxf: Fix more coding standard issues.

This commit is contained in:
Gregory Nutt 2018-03-19 14:43:50 -06:00
parent 6538e4750f
commit af8b291482

View File

@ -340,7 +340,9 @@ size_t lzf_compress(FAR const void *const in_data,
ip += len + 1;
if (expect_false (ip >= in_end - 2))
{
break;
}
#if defined(CONFIG_LIBC_LZF_FASTEST) || defined(CONFIG_LIBC_LZF_FAST)
--ip;
@ -385,8 +387,9 @@ size_t lzf_compress(FAR const void *const in_data,
if (expect_false(lit == MAX_LIT))
{
op [- lit - 1] = lit - 1; /* stop run */
lit = 0; op++; /* start run */
op[- lit - 1] = lit - 1; /* Stop run */
lit = 0;; /* Start run */
op++'
}
}
}