From: Jack Lange Date: Sun, 12 Jun 2011 00:13:05 +0000 (-0700) Subject: 32 bit fixew X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=743161062addb38ad8c70c8d84e7ab60325cdb26;p=palacios.git 32 bit fixew --- diff --git a/palacios/src/palacios/vmm_mem_hook.c b/palacios/src/palacios/vmm_mem_hook.c index ee632b0..298bc8f 100644 --- a/palacios/src/palacios/vmm_mem_hook.c +++ b/palacios/src/palacios/vmm_mem_hook.c @@ -135,7 +135,7 @@ static int handle_mem_hook(struct guest_info * core, addr_t guest_va, addr_t gue } if (ret == -1) { - PrintError("Could not translate Instruction Address (%p)\n", (void *)core->rip); + PrintError("Could not translate Instruction Address (%p)\n", (void *)(addr_t)core->rip); return -1; }