Skip to content

Commit

Permalink
quick fix: fix build failure for release version
Browse files Browse the repository at this point in the history
conflicting types for ‘vcpu_dumpreg’

Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com>
  • Loading branch information
JasonChenCJ authored and lijinxia committed Aug 15, 2018
1 parent bb5377b commit f2a3e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypervisor/arch/x86/guest/vcpu.c
Expand Up @@ -611,7 +611,7 @@ void vcpu_dumpreg(void *data)
}
}
#else
void vcpu_dumpreg(__unused struct vcpu *vcpu)
void vcpu_dumpreg(__unused void *data)
{
return;
}
Expand Down

0 comments on commit f2a3e1f

Please sign in to comment.