fix coverity identified copy-paste error

This commit is contained in:
Matt Liberty
2020-11-02 09:33:13 -08:00
parent 4e45522b33
commit 0dbf72bf88

View File

@@ -231,7 +231,7 @@ inline void dbVector<T*>::differences(dbDiff& diff,
for (; i2 != rhs.end(); ++i2, ++i) {
diff.report("> %s[%d]:\n", field, i);
(*i1)->out(diff, dbDiff::RIGHT, NULL);
(*i2)->out(diff, dbDiff::RIGHT, NULL);
}
}