From 8b601ee16a50e27ebcd925e1bb2fb165add336e5 Mon Sep 17 00:00:00 2001 From: Francesco Salvestrini Date: Wed, 17 Sep 2008 22:44:50 +0200 Subject: [PATCH] Fixed dumps --- src/vm/vm.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vm/vm.cxx b/src/vm/vm.cxx index e742769..dde8978 100644 --- a/src/vm/vm.cxx +++ b/src/vm/vm.cxx @@ -23,7 +23,7 @@ VM::VM::VM(size_t memory) { - TR_DBG("Creating VM virtual machine 0x%p\n", this); + TR_DBG("Creating VM virtual machine %p\n", this); mem_.buffer = new char[memory]; mem_.size = memory; @@ -31,7 +31,7 @@ VM::VM::VM(size_t memory) VM::VM::~VM(void) { - TR_DBG("Destroying VM virtual machine 0x%p\n", this); + TR_DBG("Destroying VM virtual machine %p\n", this); delete [] mem_.buffer; } -- 2.11.4.GIT