From: Patrick G. Bridges Date: Thu, 22 Sep 2011 18:52:13 +0000 (-0600) Subject: Minor change to fix unused variable X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=1a931ca854492fce5ea04d7566829f54a0d462cc Minor change to fix unused variable --- diff --git a/palacios/src/palacios/vmx.c b/palacios/src/palacios/vmx.c index 5a48935..47c01c7 100644 --- a/palacios/src/palacios/vmx.c +++ b/palacios/src/palacios/vmx.c @@ -793,7 +793,7 @@ static void print_exit_log(struct guest_info * info) { */ int v3_vmx_enter(struct guest_info * info) { int ret = 0; - uint32_t tsc_offset_low, tsc_offset_high; + //uint32_t tsc_offset_low, tsc_offset_high; struct vmx_exit_info exit_info; struct vmx_data * vmx_info = (struct vmx_data *)(info->vmm_data);