diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 7ba54a1c360..213a9eabaab 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -13926,7 +13926,7 @@ ha_innobase::check( if (!dict_index_is_clust(index)) { prebuilt->index_usable = FALSE; row_mysql_lock_data_dictionary(prebuilt->trx); - dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");; + dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted"); row_mysql_unlock_data_dictionary(prebuilt->trx); }); diff --git a/storage/xtradb/buf/buf0flu.cc b/storage/xtradb/buf/buf0flu.cc index 873edec62b4..76358b8f8f4 100644 --- a/storage/xtradb/buf/buf0flu.cc +++ b/storage/xtradb/buf/buf0flu.cc @@ -2222,7 +2222,7 @@ buf_flush_single_page_from_LRU( if (ready) { bool evict_zip; - evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool);; + evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool); freed = buf_LRU_free_page(bpage, evict_zip); diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 320b900d019..2ed99a4a26e 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -14663,7 +14663,7 @@ ha_innobase::check( if (!dict_index_is_clust(index)) { prebuilt->index_usable = FALSE; row_mysql_lock_data_dictionary(prebuilt->trx); - dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");; + dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted"); row_mysql_unlock_data_dictionary(prebuilt->trx); });