From 2549efc439bdf056bbec67e07861d83e1c56ba0e Mon Sep 17 00:00:00 2001 From: Julius Pfrommer Date: Fri, 29 Nov 2024 21:37:49 +0100 Subject: [PATCH] fix(nc): Add newline at the end of generated datatype definitions This led to build issues in the CI. --- tools/nodeset_compiler/backend_open62541_typedefinitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nodeset_compiler/backend_open62541_typedefinitions.py b/tools/nodeset_compiler/backend_open62541_typedefinitions.py index d4cfbdce071..5ab98cbaf69 100644 --- a/tools/nodeset_compiler/backend_open62541_typedefinitions.py +++ b/tools/nodeset_compiler/backend_open62541_typedefinitions.py @@ -426,7 +426,7 @@ def print_header(self): self.printh(''' _UA_END_DECLS -#endif /* %s_GENERATED_H_ */''' % self.parser.outname.upper()) +#endif /* %s_GENERATED_H_ */\n''' % self.parser.outname.upper()) def print_doc(self): for ns in self.filtered_types: