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

View File

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