From 5b7de9d7f8c33d68315d12a2da5482854ff0dd89 Mon Sep 17 00:00:00 2001
From: "SND\\kernelnet_cp"
 <SND\kernelnet_cp@9b283d60-5439-405e-af05-b73fd8c4d996>
Date: Mon, 12 Jul 2010 16:03:13 +0000
Subject: [PATCH] DML syntax for dprint supported

git-svn-id: https://pykd.svn.codeplex.com/svn@51469 9b283d60-5439-405e-af05-b73fd8c4d996
---
 pykd/dbgprint.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pykd/dbgprint.cpp b/pykd/dbgprint.cpp
index d7c9a98..f929303 100644
--- a/pykd/dbgprint.cpp
+++ b/pykd/dbgprint.cpp
@@ -6,11 +6,11 @@ using namespace std;
 
 void DbgPrint::dprint( const string&  str )
 {
-	g_Ext->Out( str.c_str() );
+	g_Ext->Dml( str.c_str() );
 }
 
 void DbgPrint::dprintln( const std::string&  str )
 {
-    g_Ext->Out( str.c_str() );
-    g_Ext->Out( "\r\n" );
+    g_Ext->Dml( str.c_str() );
+    g_Ext->Dml( "\r\n" );
 }
\ No newline at end of file