From a191d81ffeedd18bfbf6ae5e7ed31704e37f25ba Mon Sep 17 00:00:00 2001
From: "SND\\EreTIk_cp" <SND\EreTIk_cp@9b283d60-5439-405e-af05-b73fd8c4d996>
Date: Thu, 3 Mar 2011 17:18:39 +0000
Subject: [PATCH] [~] Remove trailing spaces, tabs replaced by spaces. Testing
 TFS

git-svn-id: https://pykd.svn.codeplex.com/svn@62137 9b283d60-5439-405e-af05-b73fd8c4d996
---
 pykd/dbgsym.cpp | 78 ++++++++++++++++++++++++-------------------------
 1 file changed, 39 insertions(+), 39 deletions(-)

diff --git a/pykd/dbgsym.cpp b/pykd/dbgsym.cpp
index 17fbbe6..9cf51b0 100644
--- a/pykd/dbgsym.cpp
+++ b/pykd/dbgsym.cpp
@@ -11,50 +11,50 @@
 boost::python::object
 findSymbolForAddress( ULONG64 addr )
 {
-    HRESULT         hres;  
-    
+    HRESULT         hres;
+
     try {
         
-        addr = addr64( addr );     
-            
+        addr = addr64( addr );
+
         ULONG     moduleIndex;
-        ULONG64   moduleBase;            
+        ULONG64   moduleBase;
         hres = dbgExt->symbols->GetModuleByOffset( addr, 0, &moduleIndex, &moduleBase );
-    
+
         if ( FAILED( hres ) )
         {
-            return boost::python::object();   
-        }         
-        
+            return boost::python::object();
+        }
+
         char   moduleName[0x100];
         hres =  dbgExt->symbols2->GetModuleNameString( DEBUG_MODNAME_MODULE, moduleIndex, moduleBase, 
                     moduleName, sizeof( moduleName ), NULL );
-                    
+
         if ( FAILED( hres ) )
-             throw DbgException( "IDebugSymbol2::GetModuleNameString  failed" );           
-    
+             throw DbgException( "IDebugSymbol2::GetModuleNameString  failed" );
+
         char        symbolName[0x100];
         ULONG64     displace = 0;
         hres = dbgExt->symbols->GetNameByOffset( addr, symbolName, sizeof(symbolName), NULL, &displace );
         if ( FAILED( hres ) )
-            throw DbgException( "IDebugSymbol::GetNameByOffset  failed" );    
-        
+            throw DbgException( "IDebugSymbol::GetNameByOffset  failed" );
+
         std::stringstream      ss;
         displace == 0 ?  ss << symbolName : ss << symbolName << '+' << std::hex << displace;
-        
+
         return boost::python::object( ss.str() );
-                               
+
     }
-	catch( std::exception  &e )
-	{
-		dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd error: %s\n", e.what() );
-	}
-	catch(...)
-	{
-		dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd unexpected error\n" );
-	}	 
-	
-	return boost::python::object();
+    catch( std::exception  &e )
+    {
+        dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd error: %s\n", e.what() );
+    }
+    catch(...)
+    {
+        dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd unexpected error\n" );
+    }
+
+    return boost::python::object();
 }
 
 /////////////////////////////////////////////////////////////////////////////////
@@ -62,29 +62,29 @@ findSymbolForAddress( ULONG64 addr )
 ULONG64
 findAddressForSymbol( const std::string  &moduleName, const std::string  &symbolName )
 {
-    HRESULT         hres;  
+    HRESULT         hres;
     
     try {
-    
+
         std::string   ModuleSymName = moduleName;
         ModuleSymName += "!";
         ModuleSymName += symbolName;
-    
+
         ULONG64    offset = 0ULL;
         hres = dbgExt->symbols->GetOffsetByName( ModuleSymName.c_str(), &offset );
         if ( SUCCEEDED( hres ) )
-            return offset;                
+            return offset;
     }
     catch( std::exception  &e )
-	{
-		dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd error: %s\n", e.what() );
-	}
-	catch(...)
-	{
-		dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd unexpected error\n" );
-	}	 
-	
-	return 0;
+    {
+        dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd error: %s\n", e.what() );
+    }
+    catch(...)
+    {
+        dbgExt->control->Output( DEBUG_OUTPUT_ERROR, "pykd unexpected error\n" );
+    }
+
+    return 0;
 }
 
 /////////////////////////////////////////////////////////////////////////////////
\ No newline at end of file