diff --git a/tutorials/hello-camkes-1/hello-camkes-1.md b/tutorials/hello-camkes-1/hello-camkes-1.md index f0db414e..7295101c 100644 --- a/tutorials/hello-camkes-1/hello-camkes-1.md +++ b/tutorials/hello-camkes-1/hello-camkes-1.md @@ -373,7 +373,6 @@ int run(void) { int run(void) { printf("Starting the client\n"); printf("-------------------\n"); - /* TODO: invoke the RPC function */ /* hint 1: the name of the function to invoke is a composition of an interface name and a function name: * i.e.: _ @@ -390,7 +389,6 @@ int run(void) { ``` char *shello = "hello world"; hello_say_hello(shello); - printf("After the client\n"); return 0; ```