Commit 51c361c5 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix the broken tokudb build refs[t:2088]

git-svn-id: file:///svn/toku/tokudb@15172 c7de825b-a66e-492c-adef-691d508d4ae1
parent c7906555
......@@ -357,7 +357,7 @@ static int needs_recovery (DB_ENV *env) {
} else {
logdir = toku_strdup(env->i->dir);
}
BOOL recovery_needed = (BOOL) tokudb_needs_recovery(logdir, TRUE);
int recovery_needed = tokudb_needs_recovery(logdir, TRUE);
toku_free(logdir);
return recovery_needed ? DB_RUNRECOVERY : 0;
}
......
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