X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_debug.c;h=9865dd1e704e783bf6263e4f2d92c625e11ff6e8;hb=3574c981404a1c812d369132db09ec2a27d59a5d;hp=ed98accfcd54256af1b260609e215bb82fb85f07;hpb=5db3136d5331c355c188537c68005db8d2cb4eac;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(" ");