X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_debug.c;fp=palacios%2Fsrc%2Fpalacios%2Fvmm_debug.c;h=9865dd1e704e783bf6263e4f2d92c625e11ff6e8;hb=66a1a4c7a9edcd7d8bc207aca093d694a6e6b5b2;hp=ed98accfcd54256af1b260609e215bb82fb85f07;hpb=f7cf9c19ecb0a589dd45ae0d2c91814bd3c2acc2;p=palacios.git diff --git a/palacios/src/palacios/vmm_debug.c b/palacios/src/palacios/vmm_debug.c index ed98acc..9865dd1 100644 --- a/palacios/src/palacios/vmm_debug.c +++ b/palacios/src/palacios/vmm_debug.c @@ -36,7 +36,7 @@ void PrintDebugMemDump(uchar_t *start, int n) int i, j; for (i = 0; i < n; i += 16) { - PrintDebug("%8x", (start + i)); + PrintDebug("%p", (void *)(start + i)); for (j = i; (j < (i + 16)) && (j < n); j += 2) { PrintDebug(" ");