diff --git a/src/branch_tier.cpp b/src/branch_tier.cpp index 61c56fd4..5e36a288 100644 --- a/src/branch_tier.cpp +++ b/src/branch_tier.cpp @@ -69,10 +69,10 @@ BranchTier::BranchTier(toml::value const &v_ type = table.at("type").as_string(); if(type == "literal") - l::load_branch_literal(table,_branches); + l::load_branch_literal(table,min_free_space_,_branches); else if(type == "glob") - l::load_branch_glob(table,_branches); + l::load_branch_glob(table,min_free_space_,_branches); else if(type == "scan") - l::load_branch_scan(table,_branches); + l::load_branch_scan(table,min_free_space_,_branches); } }