Skip to content

Commit 9401e6b

Browse files
committed
Remove unnecessary semicolons
1 parent ee1d08c commit 9401e6b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13926,7 +13926,7 @@ ha_innobase::check(
1392613926
if (!dict_index_is_clust(index)) {
1392713927
prebuilt->index_usable = FALSE;
1392813928
row_mysql_lock_data_dictionary(prebuilt->trx);
13929-
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");;
13929+
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");
1393013930
row_mysql_unlock_data_dictionary(prebuilt->trx);
1393113931
});
1393213932

storage/xtradb/buf/buf0flu.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2222,7 +2222,7 @@ buf_flush_single_page_from_LRU(
22222222
if (ready) {
22232223
bool evict_zip;
22242224

2225-
evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool);;
2225+
evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool);
22262226

22272227
freed = buf_LRU_free_page(bpage, evict_zip);
22282228

storage/xtradb/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14663,7 +14663,7 @@ ha_innobase::check(
1466314663
if (!dict_index_is_clust(index)) {
1466414664
prebuilt->index_usable = FALSE;
1466514665
row_mysql_lock_data_dictionary(prebuilt->trx);
14666-
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");;
14666+
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");
1466714667
row_mysql_unlock_data_dictionary(prebuilt->trx);
1466814668
});
1466914669

0 commit comments

Comments
 (0)