Fixed wrong type for parameter env.

This commit is contained in:
Michael Müller
2022-06-30 12:24:01 +02:00
parent b5449df554
commit ff9d123000

View File

@@ -11,7 +11,7 @@ struct ThreadTest::Main
{
Genode::Env &_env;
Main(env) : _env(env) {}
Main(Genode::Env &env) : _env(env) {}
void execute()
{