From 57be54fa88c7e66cf1dc948a6740976ed34baf21 Mon Sep 17 00:00:00 2001 From: Alina Lenk Date: Sat, 30 Jul 2022 11:03:47 +0200 Subject: [PATCH 2/2] generate_packets.py: Correctly identify cm_parameter fields See osdn#45267 Signed-off-by: Alina Lenk --- common/generate_packets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/generate_packets.py b/common/generate_packets.py index a8f6b9cc36..4af087e5ce 100755 --- a/common/generate_packets.py +++ b/common/generate_packets.py @@ -477,7 +477,7 @@ class RawFieldType(ABC): if dataio_type == "worklist": return WorklistType(dataio_type, public_type) - if dataio_type == "cm_paramter": + if dataio_type == "cm_parameter": return CmParameterType(dataio_type, public_type) if dataio_type == "bitvector": -- 2.34.1