Remove format strings from connection types

Issue #2064
This commit is contained in:
Norman Feske
2023-03-03 12:07:28 +01:00
committed by Christian Helmuth
parent fb66e733b5
commit 9debad4e91
58 changed files with 199 additions and 457 deletions

View File

@ -25,11 +25,11 @@ struct Hello::Connection : Genode::Connection<Session>, Session_client
Connection(Genode::Env &env)
:
/* create session */
Genode::Connection<Hello::Session>(env, session(env.parent(),
"ram_quota=6K, cap_quota=4")),
Genode::Connection<Hello::Session>(env, Label(),
Ram_quota { 8*1024 }, Args()),
/* initialize RPC interface */
Session_client(cap()) { }
Session_client(cap())
{ }
};
#endif /* _INCLUDE__HELLO_SESSION__CONNECTION_H_ */