X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_util.c;h=029f9fda37bc98c4e2388de685ca6db33ba05c08;hb=f23519733b314e4cbaf0b2f1e4ea317302680898;hp=192b64f93069c98f67bfdcd34c5cbf619aaa3ad6;hpb=3cd1d3771e3f8e30b09f6c4995851979aaafc5ff;p=palacios.git diff --git a/palacios/src/palacios/vmm_util.c b/palacios/src/palacios/vmm_util.c index 192b64f..029f9fd 100644 --- a/palacios/src/palacios/vmm_util.c +++ b/palacios/src/palacios/vmm_util.c @@ -48,7 +48,7 @@ void PrintTraceMemDump(uchar_t * start, int n) { int i, j; for (i = 0; i < n; i += 16) { - PrintTrace("%8x", (start + i)); + PrintTrace("%p", (void *)(start + i)); for (j = i; (j < (i + 16)) && (j < n); j += 2) { PrintTrace(" "); PrintTraceHex(*(uchar_t *)(start + j));