mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
fix some icc on linux errors in the fractal tree refs[t:2500]
git-svn-id: file:///svn/toku/tokudb@18997 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
e9bd5c759f
commit
95035e9dde
1 changed files with 2 additions and 2 deletions
|
@ -2653,7 +2653,7 @@ int toku_brt_insert (BRT brt, DBT *key, DBT *val, TOKUTXN txn) {
|
|||
static void
|
||||
txn_note_doing_work(TOKUTXN txn) {
|
||||
if (txn)
|
||||
txn->has_done_work = 1;
|
||||
txn->has_done_work = TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
@ -3221,7 +3221,7 @@ brt_open(BRT t, const char *fname_in_env, int is_create, int only_create, CACHET
|
|||
r = verify_builtin_comparisons_consistent(t, t->flags);
|
||||
if (r!=0) goto died_after_read_and_pin;
|
||||
t->flags = t->h->flags;
|
||||
t->did_set_flags = 1;
|
||||
t->did_set_flags = TRUE;
|
||||
} else {
|
||||
if (t->flags != t->h->flags) { /* if flags have been set then flags must match */
|
||||
r = EINVAL; goto died_after_read_and_pin;
|
||||
|
|
Loading…
Add table
Reference in a new issue