summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rwxr-xr-xutil/edid/qedidvendortable.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/edid/qedidvendortable.py b/util/edid/qedidvendortable.py
index 39f60c0e90..3d67666238 100755
--- a/util/edid/qedidvendortable.py
+++ b/util/edid/qedidvendortable.py
@@ -98,12 +98,12 @@ header = """
QT_BEGIN_NAMESPACE
-typedef struct VendorTable {
+struct VendorTable {
const char id[4];
const char name[%d];
-} VendorTable;
+};
-static const struct VendorTable q_edidVendorTable[] = {"""
+static const VendorTable q_edidVendorTable[] = {"""
footer = """};