about summary refs log tree commit diff
path: root/src/rt/test/rust_test_runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/test/rust_test_runtime.cpp')
-rw-r--r--src/rt/test/rust_test_runtime.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/test/rust_test_runtime.cpp b/src/rt/test/rust_test_runtime.cpp
index 520426eb256..644a23f28b1 100644
--- a/src/rt/test/rust_test_runtime.cpp
+++ b/src/rt/test/rust_test_runtime.cpp
@@ -39,7 +39,7 @@ rust_domain_test::run() {
     return true;
 }
 
-void task_entry() {
+void task_entry(uintptr_t retptr, uintptr_t env) {
     printf("task entry\n");
 }
 
@@ -47,7 +47,7 @@ void
 rust_task_test::worker::run() {
     rust_task_id root_id = kernel->create_task(NULL, "main");
     rust_task *root_task = kernel->get_task_by_id(root_id);
-    root_task->start((uintptr_t)&task_entry, (uintptr_t)NULL);
+    root_task->start(&task_entry, (uintptr_t)NULL);
     root_task->sched->start_main_loop();
 }