Skip to content

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Sep 22, 2018
1 parent de505d4 commit 0067035
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<NoWarn>CA1707;$(NoWarn)</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions source/Cosmos.IL2CPU/Program.cs
Expand Up @@ -35,9 +35,9 @@ public static int Run(string[] aArgs, Action<string> aLogMessage, Action<string>
return Succeeded;
}
}
catch (Exception E)
catch (Exception e)
{
aLogError(String.Format("Error occurred: " + E.ToString()));
aLogError(String.Format("Error occurred: " + e.ToString()));
}

return Failed;
Expand Down

0 comments on commit 0067035

Please sign in to comment.