Fix 128 bit uuid comparison.

This commit is contained in:
h2zero 2024-07-25 09:31:30 -06:00 committed by h2zero
parent 10d589162b
commit 209f70a083

View file

@ -291,7 +291,7 @@ bool NimBLEUUID::operator==(const NimBLEUUID& rhs) const {
return this->getValue() == rhs.getValue();
}
return memcmp(this->getValue(), rhs.getValue(), 16);
return memcmp(this->getValue(), rhs.getValue(), 16) == 0;
} // operator==
/**