From 5d6d54c066583cfa0c025daa445051c80ded7cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Mon, 11 Jul 2022 12:17:09 +0200 Subject: [PATCH] Register config handler. --- repos/hello_tutorial/src/hello/client/main.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/repos/hello_tutorial/src/hello/client/main.cc b/repos/hello_tutorial/src/hello/client/main.cc index e5d1a2922a..96cdf82701 100644 --- a/repos/hello_tutorial/src/hello/client/main.cc +++ b/repos/hello_tutorial/src/hello/client/main.cc @@ -56,7 +56,10 @@ struct HelloClient { } HelloClient(Genode::Env &env, Hello::Connection &conn) : _env(env), _hello(conn), _a(5), _b(2) - {} + { + _config.sigh(_config_handler); + _handle_config(); + } }; void