1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fixed compiler warnings.

This commit is contained in:
Jan Lindström
2014-02-13 12:35:37 +02:00
parent dfc2950356
commit 9c614665ee
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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);
}
/********************************************************************//**