From 5715770e9e20fd7522694b522b4c22a2b13baa54 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marvin=20Ha=CC=88user?= <mhaeuser@posteo.de>
Date: Sat, 25 Nov 2023 15:40:14 +0100
Subject: [PATCH] simulator: remove erroneous escape sequence

The character '<' does not have any functional meaning and thus cannot
be escaped.
---
 simulators/c++2/src_simulator/definitions.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/simulators/c++2/src_simulator/definitions.h b/simulators/c++2/src_simulator/definitions.h
index c88ba8a1de..1a5b9435d1 100644
--- a/simulators/c++2/src_simulator/definitions.h
+++ b/simulators/c++2/src_simulator/definitions.h
@@ -276,7 +276,7 @@ using std::max;
 #define SCHED_HTML_TITLE_HW "<h1> Summary HW </h1>"
 #define SCHED_HTML_TITLE_TASK "<h1> Summary tasks </h1>"
 #define SCHED_HTML_TITLE_DEVICE "<h1> Device scheduling </h1>"
-#define SCHED_HTML_BOARD "<table width=\"170px\" style=\"float: left\">\n \<tr><td style=\"max-width: unset;\">"
+#define SCHED_HTML_BOARD "<table width=\"170px\" style=\"float: left\">\n <tr><td style=\"max-width: unset;\">"
 #define SCHED_HTML_BOARD2 "<table style=\"float: left\">"
 
 #define SCHED_HTML_JS_LINK1 "<script src=\"https://code.jquery.com/jquery-3.4.1.min.js\">"
-- 
GitLab