Skip to content

Commit a063f50

Browse files
authored
Format code
1 parent 60f5f0e commit a063f50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/kservice.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,12 +1029,12 @@ RTM_EXPORT(rt_free_align);
10291029
#ifdef RT_USING_PUNY_FFS
10301030
int __rt_ffs(rt_int32_t value) {
10311031
int position = 1; // position start from 1
1032-
1032+
10331033
if (value == 0)
10341034
{
10351035
return 0; // 0 means no bit 1
10361036
}
1037-
1037+
10381038
// search half range
10391039
if ((value & 0xFFFF) == 0)
10401040
{

0 commit comments

Comments
 (0)