Blame SOURCES/RHELonly-Missing-comma-in-the-dmi_slot_type.patch

b96f76
From f0ccbbe338b8f400596001372f1c0d7c70094204 Mon Sep 17 00:00:00 2001
b96f76
From: Lianbo Jiang <lijiang@redhat.com>
b96f76
Date: Wed, 9 Dec 2020 21:53:54 +0800
b96f76
Subject: [PATCH] Missing comma in the dmi_slot_type()
b96f76
b96f76
In the initialization of "type", a suspicious concatenated string
b96f76
"PCI Express Mini 76-pinPCI Express 4 SFF-8639 (U.2)" is produced
b96f76
due to a missing comma between lines.
b96f76
b96f76
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
b96f76
---
b96f76
 dmidecode.c | 2 +-
b96f76
 1 file changed, 1 insertion(+), 1 deletion(-)
b96f76
b96f76
diff --git a/dmidecode.c b/dmidecode.c
b96f76
index ac96395d42c3..f7bd48203409 100644
b96f76
--- a/dmidecode.c
b96f76
+++ b/dmidecode.c
b96f76
@@ -1939,7 +1939,7 @@ static const char *dmi_slot_type(u8 code)
b96f76
 		"PCI Express 3 SFF-8639 (U.2)",
b96f76
 		"PCI Express Mini 52-pin with bottom-side keep-outs",
b96f76
 		"PCI Express Mini 52-pin without bottom-side keep-outs",
b96f76
-		"PCI Express Mini 76-pin"
b96f76
+		"PCI Express Mini 76-pin",
b96f76
 		"PCI Express 4 SFF-8639 (U.2)",
b96f76
 		"PCI Express 5 SFF-8639 (U.2)",
b96f76
 		"OCP NIC 3.0 Small Form Factor (SFF)",
b96f76
-- 
b96f76
2.17.1
b96f76