1
0
Fork 0

Remove implicit cast

This commit is contained in:
Andreas Streichardt 2016-08-22 11:05:19 +02:00
parent 71db758e35
commit 374f24fbd7
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ bool config_t::merge(VPackSlice const& conf) {
_compactionStepSize = conf.get(compactionStepSizeStr).getUInt();
ss << _compactionStepSize << " (persisted)";
} else {
_compactionStepSize = 2.5;
_compactionStepSize = 2;
ss << _compactionStepSize << " (default)";
}
} else {