Skip to content

Commit 9c61466

Browse files
author
Jan Lindström
committed
Fixed compiler warnings.
1 parent dfc2950 commit 9c61466

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/innobase/include/dict0dict.ic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ dict_tf_set(
888888
}
889889

890890
*flags |= (atomic_writes << DICT_TF_POS_ATOMIC_WRITES);
891-
ut_ad(dict_tf_get_atomic_writes(*flags) == awrites);
891+
ut_a(dict_tf_get_atomic_writes(*flags) == awrites);
892892

893893
if (use_data_dir) {
894894
*flags |= (1 << DICT_TF_POS_DATA_DIR);

storage/xtradb/include/dict0dict.ic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ dict_tf_set(
896896
}
897897

898898
*flags |= (atomic_writes << DICT_TF_POS_ATOMIC_WRITES);
899-
ut_ad(dict_tf_get_atomic_writes(*flags) == awrites);
899+
ut_a(dict_tf_get_atomic_writes(*flags) == awrites);
900900
}
901901

902902
/********************************************************************//**

0 commit comments

Comments
 (0)