From 213fe79900d0691457c872ba72cec9619f2f79d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Mon, 11 Jul 2022 14:41:44 +0200 Subject: [PATCH] hello_tutorial: Corrected type for _id. --- repos/hello_tutorial/src/hello/server/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/hello_tutorial/src/hello/server/main.cc b/repos/hello_tutorial/src/hello/server/main.cc index 661ecc02cd..ff79640f33 100644 --- a/repos/hello_tutorial/src/hello/server/main.cc +++ b/repos/hello_tutorial/src/hello/server/main.cc @@ -28,7 +28,7 @@ namespace Hello { struct Hello::Session_component : Genode::Rpc_object { - unsigned int _id; + unsigned short _id; Session_component(unsigned short id) : Genode::Rpc_object(), _id(id) {}