From b960e9bc539403d6bd42636ff0837c6ed88c67d4 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sat, 23 Jan 2010 21:25:30 +0000 Subject: [PATCH] Fixed build. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5437 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../UsageDataCollector/UsageDataSessionWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs b/src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs index 03d967add8..74f5d52a3a 100644 --- a/src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs +++ b/src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs @@ -304,7 +304,7 @@ namespace ICSharpCode.UsageDataCollector { string type = exception.GetType().FullName; if (exception is ExternalException || exception is System.IO.IOException) - return type + " (" + Marshal.GetHRForException(ee).ToString("x8") + ")"; + return type + " (" + Marshal.GetHRForException(exception).ToString("x8") + ")"; else return type; }