Commit 9231dda6 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix some windows build problems

git-svn-id: file:///svn/toku/tokudb@14290 c7de825b-a66e-492c-adef-691d508d4ae1
parent a002c6e0
...@@ -105,7 +105,7 @@ struct recover_env { ...@@ -105,7 +105,7 @@ struct recover_env {
}; };
typedef struct recover_env *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; int r;
r = toku_create_cachetable(&env->ct, 1<<25, (LSN){0}, 0); 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_ ...@@ -123,7 +123,7 @@ int recover_env_init (RECOVER_ENV env, brt_compare_func bt_compare, brt_compare_
return r; return r;
} }
void recover_env_cleanup (RECOVER_ENV env) { static void recover_env_cleanup (RECOVER_ENV env) {
int r; int r;
file_map_close_dictionaries(&env->fmap); file_map_close_dictionaries(&env->fmap);
......
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