rt: Fix def of isaac_seed on windows

This commit is contained in:
Brian Anderson
2012-05-21 17:42:32 -07:00
parent 2d623f347c
commit 17dd5650f8
2 changed files with 3 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ rand_seed() {
rust_vec *v = (rust_vec *) task->kernel->malloc(vec_size<uint8_t>(size),
"rand_seed");
v->fill = v->alloc = size;
isaac_seed((uint8_t*) &v->data);
isaac_seed(task->kernel, (uint8_t*) &v->data);
return v;
}