tutorial: remove unused variable

This commit is contained in:
Edgard Schmidt 2018-09-23 13:19:35 +02:00 committed by Christian Helmuth
parent d56454f153
commit a3fdefa6f9
2 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ parameters.
!{
! protected:
!
! Session_component *_create_session(const char *args)
! Session_component *_create_session(const char *)
! {
! Genode::log("creating hello session");
! return new (md_alloc()) Session_component();

View File

@ -42,7 +42,7 @@ class Hello::Root_component
{
protected:
Session_component *_create_session(const char *args)
Session_component *_create_session(const char *)
{
Genode::log("creating hello session");
return new (md_alloc()) Session_component();