fix comparison typo
This commit is contained in:
parent
75a90be0dd
commit
aa3376ab42
|
@ -1455,7 +1455,7 @@ struct StorageMetadataType {
|
|||
static double currentTime() { return g_network->timer(); }
|
||||
|
||||
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 {
|
||||
|
|
Loading…
Reference in New Issue