Browse Source

Fixed build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5437 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
b960e9bc53
  1. 2
      src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs

2
src/AddIns/Misc/UsageDataCollector/UsageDataCollector/UsageDataSessionWriter.cs

@ -304,7 +304,7 @@ namespace ICSharpCode.UsageDataCollector @@ -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;
}

Loading…
Cancel
Save