Commit 9c614665 authored by Jan Lindström's avatar Jan Lindström

Fixed compiler warnings.

parent dfc29503
......@@ -888,7 +888,7 @@ dict_tf_set(
}
*flags |= (atomic_writes << DICT_TF_POS_ATOMIC_WRITES);
ut_ad(dict_tf_get_atomic_writes(*flags) == awrites);
ut_a(dict_tf_get_atomic_writes(*flags) == awrites);
if (use_data_dir) {
*flags |= (1 << DICT_TF_POS_DATA_DIR);
......
......@@ -896,7 +896,7 @@ dict_tf_set(
}
*flags |= (atomic_writes << DICT_TF_POS_ATOMIC_WRITES);
ut_ad(dict_tf_get_atomic_writes(*flags) == awrites);
ut_a(dict_tf_get_atomic_writes(*flags) == awrites);
}
/********************************************************************//**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment