From 6c0f4e232c9b23276fa9ff64132111391315401f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Fri, 1 Jul 2022 16:20:57 +0200 Subject: [PATCH] Fixed typo in intializer list. --- repos/mml/src/app/thread_test/thread_test.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/repos/mml/src/app/thread_test/thread_test.cc b/repos/mml/src/app/thread_test/thread_test.cc index af42a4ffe9..c69619729a 100644 --- a/repos/mml/src/app/thread_test/thread_test.cc +++ b/repos/mml/src/app/thread_test/thread_test.cc @@ -19,7 +19,11 @@ class Thread_test::Test_thread : public Thread public: List_element _list_element{this}; - Test_thread(Env &env, uint16_t id, Location &location) : _env(env), _id(id) : Thread(env, Name("test_", location.xpos(), "x", location.ypos()), 4 * 4096, location, Weight(), env.cpu()) + Test_thread(Env &env, uint16_t id, Location const &location) + : + _env(env), + _id(id), + Thread(env, Name("test_", location.xpos(), "x", location.ypos()), 4 * 4096, location, Weight(), env.cpu()) { } void entry() override