summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2019-02-09 18:45:30 -0800
committerJan Kotas <jkotas@microsoft.com>2019-02-09 22:40:56 -0800
commitbe1b5db77a593fdea460ef7ab90e63b3817e7853 (patch)
tree9ded6839290f1a1e745ff91ac75d7bb869d4cda5
parentee8cda063048305e730c92e6899cf0c523fbe483 (diff)
downloadcoreclr-be1b5db77a593fdea460ef7ab90e63b3817e7853.tar.gz
coreclr-be1b5db77a593fdea460ef7ab90e63b3817e7853.tar.bz2
coreclr-be1b5db77a593fdea460ef7ab90e63b3817e7853.zip
Fix casing of interop directories (dotnet/corert#6982)
Match convention introduced by https://github.com/dotnet/corefx/pull/35085 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs b/src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs
index 406e4b0017..c99351950a 100644
--- a/src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs
+++ b/src/System.Private.CoreLib/shared/Interop/Windows/Kernel32/Interop.GetCurrentProcess_IntPtr.cs
@@ -9,7 +9,7 @@ internal partial class Interop
{
internal partial class Kernel32
{
- [DllImport(Libraries.Kernel32, SetLastError = true)]
+ [DllImport(Libraries.Kernel32)]
internal static extern IntPtr GetCurrentProcess();
}
}