aboutsummaryrefslogtreecommitdiff
path: root/executor/executor_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'executor/executor_test.h')
-rw-r--r--executor/executor_test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/executor_test.h b/executor/executor_test.h
index 5984fc8f1..e85057d23 100644
--- a/executor/executor_test.h
+++ b/executor/executor_test.h
@@ -13,7 +13,7 @@ static void os_init(int argc, char** argv, void* data, size_t data_size)
fail("mmap of data segment failed");
}
-static intptr_t execute_syscall(const call_t* c, intptr_t a[kMaxArgs])
+static long execute_syscall(const call_t* c, long a[kMaxArgs])
{
return c->call(a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8]);
}