Commit 7e32d642 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Hacking makefiles. Addresses #782.

git-svn-id: file:///svn/tokudb@3794 c7de825b-a66e-492c-adef-691d508d4ae1
parent 68b43f00
......@@ -1146,8 +1146,8 @@ static inline int toku__lt_borderwrite_insert(toku_lock_tree* tree,
/* Find predecessor and successors */
toku_range pred;
toku_range succ;
BOOL found_p;
BOOL found_s;
BOOL found_p = FALSE;
BOOL found_s = FALSE;
r = toku__lt_get_border(tree, numfound == 0, &pred, &succ,
&found_p, &found_s, to_insert);
......@@ -1905,8 +1905,8 @@ static inline int toku__sweep_border(toku_lock_tree* tree, toku_range* range) {
/* Find pred(s.ends.left), and succ(s.ends.right) */
toku_range pred;
toku_range succ;
BOOL found_p;
BOOL found_s;
BOOL found_p = FALSE;
BOOL found_s = FALSE;
r = toku__lt_get_border(tree, TRUE, &pred, &succ, &found_p, &found_s,
&buf[0]);
......
RANGETREE_FILES = linear log_nooverlap tokuredblack
RANGETREE_FILES = log_nooverlap tokuredblack
RANGETREE_HERE = $(ROOT)src/range_tree
RANGETREE_HEADERS = rangetree rangetree-internal tokuredblack
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