summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibEDID/EDID.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibEDID/EDID.h')
-rw-r--r--Userland/Libraries/LibEDID/EDID.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibEDID/EDID.h b/Userland/Libraries/LibEDID/EDID.h
index 9cf0ae02b2..b3f15696c4 100644
--- a/Userland/Libraries/LibEDID/EDID.h
+++ b/Userland/Libraries/LibEDID/EDID.h
@@ -88,7 +88,7 @@ public:
static ErrorOr<Parser> from_framebuffer_device(String const&, size_t);
#endif
- String legacy_manufacturer_id() const;
+ StringView legacy_manufacturer_id() const;
#ifndef KERNEL
String manufacturer_name() const;
#endif
@@ -453,6 +453,7 @@ private:
#else
String m_version;
#endif
+ char m_legacy_manufacturer_id[4] {};
};
}