X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fsvm_handler.c;h=798177e84553e045c03c1ad09d89d2c66b68ba8d;hb=03a41b18bdb6ce4bf666f18acdaf302e2360efdc;hp=23546e26c1583e575e14dc97b1d4e5ee5615a246;hpb=32694d99c15e00731a240e0fccea252e08bf5ada;p=palacios.git diff --git a/palacios/src/palacios/svm_handler.c b/palacios/src/palacios/svm_handler.c index 23546e2..798177e 100644 --- a/palacios/src/palacios/svm_handler.c +++ b/palacios/src/palacios/svm_handler.c @@ -417,7 +417,7 @@ int v3_handle_svm_exit(struct guest_info * info) { #ifdef DEBUG_INTERRUPTS PrintDebug("Injecting Interrupt %d (EIP=%p)\n", guest_ctrl->guest_ctrl.V_INTR_VECTOR, - (void *)info->rip); + (void *)(addr_t)info->rip); #endif v3_injecting_intr(info, irq, EXTERNAL_IRQ); @@ -446,7 +446,7 @@ int v3_handle_svm_exit(struct guest_info * info) { #ifdef DEBUG_INTERRUPTS PrintDebug("Injecting Interrupt %d (EIP=%p)\n", guest_ctrl->EVENTINJ.vector, - (void *)info->rip); + (void *)(addr_t)info->rip); #endif v3_injecting_intr(info, excp, EXCEPTION); break;