Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <llsan@microsoft.com>2017-11-24 20:39:03 +0300
committerGitHub <noreply@github.com>2017-11-24 20:39:03 +0300
commitb736b420b5ff8540722a5a4911e607ece3cdddb7 (patch)
tree220f0871d6ef559dfd10fefcac73526df04db131 /mcs/class/Mono.Profiler.Log
parentec117584a251d4c777e4c9c77efa30ace3cc0287 (diff)
Fix invalid enum values in LogGCEvent
Diffstat (limited to 'mcs/class/Mono.Profiler.Log')
-rw-r--r--mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
index a204195730d..711f948fa26 100644
--- a/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
+++ b/mcs/class/Mono.Profiler.Log/Mono.Profiler.Log/LogEnums.cs
@@ -139,11 +139,11 @@ namespace Mono.Profiler.Log {
WeakReference = 2 << 8,
Interior = 4 << 8,
- Stack = 0,
- Finalizer = 1,
- Handle = 2,
- Other = 3,
- Miscellaneous = 4,
+ Stack = 1 << 0,
+ Finalizer = 1 << 1,
+ Handle = 1 << 2,
+ Other = 1 << 3,
+ Miscellaneous = 1 << 4,
TypeMask = 0xff,
}