diff --git a/pykd/pymod.cpp b/pykd/pymod.cpp index 96cb8a6..63666ec 100644 --- a/pykd/pymod.cpp +++ b/pykd/pymod.cpp @@ -137,8 +137,10 @@ BOOST_PYTHON_MODULE( pykd ) python::implicitly_convertible(); python::implicitly_convertible(); + python::implicitly_convertible(); + python::implicitly_convertible(); - python::class_("dbgClient", "Class representing a debugging session", python::no_init ) + python::class_("dbgClient", "Class representing a debugging session", python::no_init ) .def( "addr64", &DebugClient::addr64, "Extend address to 64 bits formats" ) .def( "breakin", &DebugClient::breakin, diff --git a/pykd/typedvar.cpp b/pykd/typedvar.cpp index c91e1e7..ddee138 100644 --- a/pykd/typedvar.cpp +++ b/pykd/typedvar.cpp @@ -176,7 +176,7 @@ std::string PtrTypedVar::print() { std::stringstream sstr; - sstr << m_typeInfo->getName() << " " << m_varData->asString(); + sstr << "Ptr " << m_typeInfo->getName() << " " << m_varData->asString(); sstr << " Value: " << printValue(); return sstr.str();