fix comparison typo

This commit is contained in:
Xiaoxi Wang 2022-05-04 11:45:27 -07:00
parent 75a90be0dd
commit aa3376ab42
1 changed files with 1 additions and 1 deletions

View File

@ -1455,7 +1455,7 @@ struct StorageMetadataType {
static double currentTime() { return g_network->timer(); } static double currentTime() { return g_network->timer(); }
bool operator==(const StorageMetadataType& b) const { bool operator==(const StorageMetadataType& b) const {
return createdTime == b.createdTime && storeType == b.storeType && wrongConfigured && b.wrongConfigured; return createdTime == b.createdTime && storeType == b.storeType && wrongConfigured == b.wrongConfigured;
} }
bool operator<(const StorageMetadataType& b) const { bool operator<(const StorageMetadataType& b) const {