Fix a case of a bool being used as an integer.

This commit is contained in:
Alex Miller 2018-08-10 14:37:35 -07:00
parent 6e7f8da694
commit 69aa33eed5
1 changed files with 1 additions and 1 deletions

View File

@ -1096,7 +1096,7 @@ ACTOR Future<Void> commitQueue( TLogData* self ) {
state Reference<LogData> logData;
loop {
bool foundCount = 0;
int foundCount = 0;
for(auto it : self->id_data) {
if(!it.second->stopped) {
logData = it.second;