Skip to content

Commit 9bcd923

Browse files
Shen LichuanMikulas Patocka
authored andcommitted
dm vdo indexer: Convert comma to semicolon
To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Shen Lichuan <[email protected]> Signed-off-by: Mikulas Patocka <[email protected]>
1 parent 5d49054 commit 9bcd923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/md/dm-vdo/indexer/chapter-index.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ int uds_pack_open_chapter_index_page(struct open_chapter_index *chapter_index,
177177
if (list_number < 0)
178178
return UDS_OVERFLOW;
179179

180-
next_list = first_list + list_number--,
180+
next_list = first_list + list_number--;
181181
result = uds_start_delta_index_search(delta_index, next_list, 0,
182182
&entry);
183183
if (result != UDS_SUCCESS)

0 commit comments

Comments
 (0)