aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Diagnostics/TranslatorEventSource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Diagnostics/TranslatorEventSource.cs')
-rw-r--r--ARMeilleure/Diagnostics/TranslatorEventSource.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ARMeilleure/Diagnostics/TranslatorEventSource.cs b/ARMeilleure/Diagnostics/TranslatorEventSource.cs
index a0456e98..a4f17844 100644
--- a/ARMeilleure/Diagnostics/TranslatorEventSource.cs
+++ b/ARMeilleure/Diagnostics/TranslatorEventSource.cs
@@ -25,13 +25,13 @@ namespace ARMeilleure.Diagnostics
_funcTabSizeCounter = new PollingCounter("addr-tab-alloc", this, () => _funcTabSize / 1024d / 1024d)
{
DisplayName = "AddressTable Total Bytes Allocated",
- DisplayUnits = "MB"
+ DisplayUnits = "MiB"
};
_funcTabLeafSizeCounter = new PollingCounter("addr-tab-leaf-alloc", this, () => _funcTabLeafSize / 1024d / 1024d)
{
DisplayName = "AddressTable Total Leaf Bytes Allocated",
- DisplayUnits = "MB"
+ DisplayUnits = "MiB"
};
}