Fix compiler warnings: possible misuse of comma.

This commit is contained in:
joevt 2022-12-21 03:41:17 -08:00
parent 5294a8b71c
commit 85d0900d7d
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,8 @@ private:
class GossamerID : public MMIODevice {
public:
GossamerID(const uint16_t id) {
this->id = id, this->name = "Machine-id";
this->id = id;
this->name = "Machine-id";
supports_types(HWCompType::MMIO_DEV);
};
~GossamerID() = default;