Fix missing ( )

This commit is contained in:
Alexander A. Klimov 2019-06-28 10:02:59 +02:00 committed by Michael Friedrich
parent 07823c4b90
commit 6fd6f74b0f
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ void RedisWriter::UpdateAllConfigObjects()
}
bulkCounter++;
if (!bulkCounter % 100) {
if (!(bulkCounter % 100)) {
for (auto& kv : statements) {
if (!kv.second.empty()) {
kv.second.insert(kv.second.begin(), {"HMSET", kv.first});