diff options
author | Yoni Fogel <yoni@tokutek.com> | 2012-07-25 20:49:56 +0000 |
---|---|---|
committer | Yoni Fogel <yoni@tokutek.com> | 2013-04-17 00:01:01 -0400 |
commit | c527ba297f51755c3bae22e3d2b48f18d51e60b3 (patch) | |
tree | dc1348249742e83444184654029b4b190e9209b5 /ft/tests/test-pick-child-to-flush.cc | |
parent | 36242fd401ce5a2e668ee2763ef47f8b810b0e7e (diff) | |
download | mariadb-git-c527ba297f51755c3bae22e3d2b48f18d51e60b3.tar.gz |
refs #5081 Replace all usage:
BOOL->bool
FALSE->false
TRUE->true
u_int*_t->uint*_t
Also poisoned all of the variables
git-svn-id: file:///svn/toku/tokudb@46157 c7de825b-a66e-492c-adef-691d508d4ae1
Diffstat (limited to 'ft/tests/test-pick-child-to-flush.cc')
-rw-r--r-- | ft/tests/test-pick-child-to-flush.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ft/tests/test-pick-child-to-flush.cc b/ft/tests/test-pick-child-to-flush.cc index 7839e8d9923..6f443d0300e 100644 --- a/ft/tests/test-pick-child-to-flush.cc +++ b/ft/tests/test-pick-child-to-flush.cc @@ -39,7 +39,7 @@ static int child_to_flush(FT UU(h), FTNODE parent, void* UU(extra)) { return 0; } else { - assert(FALSE); + assert(false); } return curr_child_to_flush; } @@ -63,11 +63,11 @@ static void merge_should_not_happen(struct flusher_advice* UU(fa), FTNODE UU(child), void* UU(extra)) { - assert(FALSE); + assert(false); } static bool recursively_flush_should_not_happen(FTNODE UU(child), void* UU(extra)) { - assert(FALSE); + assert(false); } static bool always_flush(FTNODE UU(child), void* UU(extra)) { |