mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
fix some windows build problems
git-svn-id: file:///svn/toku/tokudb@14290 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
308e75d161
commit
8d44142ba8
1 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ struct recover_env {
|
|||
};
|
||||
typedef struct recover_env *RECOVER_ENV;
|
||||
|
||||
int recover_env_init (RECOVER_ENV env, brt_compare_func bt_compare, brt_compare_func dup_compare) {
|
||||
static int recover_env_init (RECOVER_ENV env, brt_compare_func bt_compare, brt_compare_func dup_compare) {
|
||||
int r;
|
||||
|
||||
r = toku_create_cachetable(&env->ct, 1<<25, (LSN){0}, 0);
|
||||
|
@ -123,7 +123,7 @@ int recover_env_init (RECOVER_ENV env, brt_compare_func bt_compare, brt_compare_
|
|||
return r;
|
||||
}
|
||||
|
||||
void recover_env_cleanup (RECOVER_ENV env) {
|
||||
static void recover_env_cleanup (RECOVER_ENV env) {
|
||||
int r;
|
||||
|
||||
file_map_close_dictionaries(&env->fmap);
|
||||
|
|
Loading…
Add table
Reference in a new issue