Avoid unused variable warning when debug output is not on.

This commit is contained in:
Steve Atherton 2022-03-07 23:12:32 -08:00
parent 9f690d5bd5
commit 8f844437da
1 changed files with 2 additions and 1 deletions

View File

@ -6261,12 +6261,13 @@ private:
while (1) {
debug_printf("%s Mutation %4d '%s': %s\n",
context.c_str(),
c++,
c,
printable(i.key()).c_str(),
i.mutation().toString().c_str());
if (i == mEnd) {
break;
}
++c;
++i;
}
}