aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/Internal/GrpcLog.cs
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2015-03-12 09:20:58 -0700
committerGravatar Michael Lumish <mlumish@google.com>2015-03-12 09:20:58 -0700
commite7268b8f841b334ea86f7432c0c1c62683b7d112 (patch)
treed1e64b170917a4aa26fc722c4bbc6d3c9bb023a4 /src/csharp/Grpc.Core/Internal/GrpcLog.cs
parent01f8f11ab092904e50f08780beda143252ee5e1c (diff)
parent075dde42fe1a78db8fb80cfbd48e34327e9b383e (diff)
Merge pull request #1017 from jtattermusch/csharp_codestyle
Fixing C# codestyle
Diffstat (limited to 'src/csharp/Grpc.Core/Internal/GrpcLog.cs')
-rw-r--r--src/csharp/Grpc.Core/Internal/GrpcLog.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csharp/Grpc.Core/Internal/GrpcLog.cs b/src/csharp/Grpc.Core/Internal/GrpcLog.cs
index 98768d05c6..2f3c8ad71c 100644
--- a/src/csharp/Grpc.Core/Internal/GrpcLog.cs
+++ b/src/csharp/Grpc.Core/Internal/GrpcLog.cs
@@ -40,7 +40,7 @@ using System.Threading;
namespace Grpc.Core.Internal
{
- internal delegate void GprLogDelegate(IntPtr fileStringPtr, Int32 line, UInt64 threadId, IntPtr severityStringPtr, IntPtr msgPtr);
+ internal delegate void GprLogDelegate(IntPtr fileStringPtr, int line, ulong threadId, IntPtr severityStringPtr, IntPtr msgPtr);
/// <summary>
/// Logs from gRPC C core library can get lost if your application is not a console app.
@@ -73,7 +73,7 @@ namespace Grpc.Core.Internal
}
}
- private static void HandleWrite(IntPtr fileStringPtr, Int32 line, UInt64 threadId, IntPtr severityStringPtr, IntPtr msgPtr)
+ private static void HandleWrite(IntPtr fileStringPtr, int line, ulong threadId, IntPtr severityStringPtr, IntPtr msgPtr)
{
try
{