about summary refs log tree commit diff
path: root/src/rt/test/rust_test_runtime.cpp
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2010-10-18 17:00:28 -0700
committergiles@thaumas.net <giles@xiph.org>2010-10-28 10:13:30 -0700
commit3b3cd550d4320285e92880f3b3f2a37a22da1b3e (patch)
tree6315b0e2de71df510087f7b840467dd2fb4ee6c0 /src/rt/test/rust_test_runtime.cpp
parent679dca854167cf3004f5d9f3d8a2e81921e5e2cc (diff)
downloadrust-3b3cd550d4320285e92880f3b3f2a37a22da1b3e.tar.gz
rust-3b3cd550d4320285e92880f3b3f2a37a22da1b3e.zip
Cast NULL to uintptr_t when calling rust_task::start().
On gcc 4.5.1 (fedora 14 i686) rust_test_runtime.cpp fails to compile
with the following error:

  rt/test/rust_test_runtime.cpp:57:61: error: passing NULL to non-pointer argument 3 of ‘void rust_task::start(uintptr_t, uintptr_t, uintptr_t, size_t)’

The explicit cast works around the error.
Diffstat (limited to 'src/rt/test/rust_test_runtime.cpp')
-rw-r--r--src/rt/test/rust_test_runtime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/test/rust_test_runtime.cpp b/src/rt/test/rust_test_runtime.cpp
index b10be5edf40..1cde532e94a 100644
--- a/src/rt/test/rust_test_runtime.cpp
+++ b/src/rt/test/rust_test_runtime.cpp
@@ -54,7 +54,7 @@ rust_task_test::worker::run() {
         kernel->create_domain(crate, "test");
     rust_dom *domain = handle->referent();
     domain->root_task->start(crate->get_exit_task_glue(),
-                             (uintptr_t)&task_entry, NULL, 0);
+                             (uintptr_t)&task_entry, (uintptr_t)NULL, 0);
     domain->start_main_loop();
     kernel->destroy_domain(domain);
 }