ia64/xen-unstable
changeset 8832:81aae0c1487e
[IA64] wrong type cast in ia64_hypercall
This is wrong type cast.
This patch fix warnning of incompatible pointer type.
Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
This is wrong type cast.
This patch fix warnning of incompatible pointer type.
Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
author | awilliam@xenbuild.aw |
---|---|
date | Fri Feb 17 14:49:58 2006 -0700 (2006-02-17) |
parents | 2ff0ade58aab |
children | 3c091740f6ff |
files | xen/arch/ia64/xen/hypercall.c |
line diff
1.1 --- a/xen/arch/ia64/xen/hypercall.c Fri Feb 17 14:42:02 2006 -0700 1.2 +++ b/xen/arch/ia64/xen/hypercall.c Fri Feb 17 14:49:58 2006 -0700 1.3 @@ -63,7 +63,7 @@ hypercall_t ia64_hypercall_table[] = 1.4 int 1.5 ia64_hypercall (struct pt_regs *regs) 1.6 { 1.7 - struct vcpu *v = (struct domain *) current; 1.8 + struct vcpu *v = current; 1.9 struct sal_ret_values x; 1.10 unsigned long *tv, *tc; 1.11 int pi;