ubi: Remove useless code in bytes_str_to_int
As a local variable, "endp" is neither refered nor returned after this line "endp += 2", it looks like a useless code, suggest to remove it. Signed-off-by: Chengsong Ke <kechengsong@huawei.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
Родитель
f212400783
Коммит
619ea229e9
|
@ -1351,8 +1351,6 @@ static int bytes_str_to_int(const char *str)
|
|||
fallthrough;
|
||||
case 'K':
|
||||
result *= 1024;
|
||||
if (endp[1] == 'i' && endp[2] == 'B')
|
||||
endp += 2;
|
||||
case '\0':
|
||||
break;
|
||||
default:
|
||||
|
|
Загрузка…
Ссылка в новой задаче